current location:Home > Technical Articles > Java > Javagetting Started
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- A brief overview of java multithreading
- Java introductory tutorial: This article briefly introduces the relevant knowledge of Java multi-threading. It has certain reference value and I hope it can help everyone. A process is an independent unit of the system that allocates and calls resources. Each process has its own memory space and system resources.
- Javagetting Started 2360 2020-08-15 16:26:37
-
- Overview of Collection interface and Map interface
- Java collections are mainly composed of two major systems: Collection system and Map system. Among them, the Collection system and the Map system are the top-level interfaces in the two systems respectively. Collection mainly has three sub-interfaces: List, Set, and Queue.
- Javagetting Started 2559 2020-08-14 16:54:02
-
- What are the similarities and differences between abstract classes and interfaces?
- Abstract classes can contain both abstract methods and non-abstract ordinary methods, while methods in interfaces must be abstract methods; abstract classes can have constructors, but interfaces cannot have constructors.
- Javagetting Started 2565 2020-08-13 16:51:36
-
- What does java encapsulation mean?
- Encapsulation refers to a method of packaging and hiding the implementation details of an abstract functional interface. The main function of encapsulation is that we can modify our own implementation code without modifying the program fragments that call our code.
- Javagetting Started 2975 2020-08-12 16:19:03
-
- Introduction to inherited features and keywords
- This article is from the Java introductory tutorial. It introduces you to the knowledge about inheritance characteristics and keywords. It has certain reference value and I hope it can help you. Subclasses have non-private properties and methods of the parent class; inheritance improves the coupling between classes.
- Javagetting Started 2967 2020-08-11 16:28:48
-
- Introduction to java basic data types
- There are two major data types in Java, namely: 1. Built-in data types; 2. Reference data types. The Java language provides eight basic types, including six numeric types, one character type, and one Boolean type.
- Javagetting Started 2369 2020-08-11 16:17:18
-
- What are the necessary conditions for the existence of polymorphism and how to implement it?
- Necessary conditions for the existence of polymorphism: 1. Inheritance; 2. Rewriting; 3. Parent class reference pointing to subclass object; Polymorphism implementation method: 1. Rewriting; 2. Interface; 3. Abstract class and abstract method.
- Javagetting Started 4399 2020-08-10 16:40:20
-
- Detailed introduction to singleton pattern
- The singleton pattern is one of the simplest design patterns in Java and is a creational pattern. It provides the best way to create objects. The singleton pattern involves a single class that is responsible for creating its own objects while ensuring that only a single object is created.
- Javagetting Started 2566 2020-08-10 16:29:31
-
- What are the similarities and differences between wrapper types and basic data types in Java?
- This article is from the Java introductory tutorial. It introduces the similarities and differences between packaging types and basic data types in Java. It has certain reference value and I hope it can help everyone. Basic types do not need to be created through the new keyword, and wrapper classes require the new keyword.
- Javagetting Started 2745 2020-08-06 17:17:43
-
- What is a read-write lock
- The read-write lock can allow multiple multi-threads to access at the same time, but when the write thread accesses, all read threads and other write threads will be blocked. Read-write locks actually maintain a pair of locks, one read lock and one write lock. By separating read locks and write locks, its concurrency is greatly improved compared to exclusive locks (exclusive locks).
- Javagetting Started 4317 2020-08-06 17:04:28
-
- How to determine whether a string is an IP address in java
- Judgment method: 1. Determine whether the character length is between 7-15 digits; 2. Determine whether it can be divided into four segments with decimal points; 3. Determine whether each segment is a number; 4. Determine whether each segment of numbers is between 0- between 255.
- Javagetting Started 4252 2020-08-06 16:07:37
-
- What are the differences between ArrayList, LinkedList and Vector?
- ArrayList and Vector are both arrays, and LinkedList is a doubly linked list. Vector is thread-safe, while ArrayList and LinkedList are not thread-safe.
- Javagetting Started 4861 2020-08-06 16:01:03
-
- Implement quick sorting in java (code example)
- This article comes from the java introductory tutorial: the article shares with you the method of implementing quick sorting, which has certain reference value. I hope it can help everyone. Quick sort, also known as partition-exchange sort, or quick sort for short, is a sorting algorithm.
- Javagetting Started 3094 2020-08-05 17:40:09
-
- What are the differences between member variables and local variables?
- The difference between member variables and local variables: For local variables, each thread and each call execution is a new life cycle; for instance variables, the life cycle is initialized with the creation of the object and dies with the recycling of the object.
- Javagetting Started 2644 2020-08-05 17:32:35
-
- what are java annotations
- Java annotation (Annotation), also known as Java annotation, is an annotation mechanism introduced by JDK5.0. Java annotations can obtain annotation content through reflection. Annotations can be embedded into the bytecode when the compiler generates the class file.
- Javagetting Started 2844 2020-08-05 17:33:49