current location:Home > Technical Articles > Java > JavaBase
- 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:
-
- What is the difference between constructor methods and ordinary methods in java
- The difference between constructors and ordinary methods in Java is: 1. The method name of the constructor must be exactly the same as the class name in which it is defined, and there is no return type; 2. There must be a constructor in a class, because the system will automatically add no parameters Construction method.
- JavaBase 3350 2020-05-16 11:44:50
-
- What is the implementation mechanism of java polymorphism?
- The implementation mechanism of Java polymorphism is: the reference variable defined by the parent class interface or interface can point to the instance object of the subclass or implementation class, and the method called by the program is dynamically bound at runtime, which is the specific implementation object pointed by the reference variable. Methods.
- JavaBase 4161 2020-05-16 11:04:04
-
- What are the main data structures in java
- The data structures in Java are: 1. Stack, which implements a last-in-first-out data structure; 2. Dictionary, which is an abstract class that defines a data structure that maps keys to values; 3. Enumeration, which The retrieval interface defines a way to retrieve consecutive elements from a data structure.
- JavaBase 2609 2020-05-16 10:38:21
-
- What is the difference between T and ? in java generics?
- The difference between T and ? in Java generics is: T represents an unknown type, which is used as a parameter in a method or a class generic; ? represents a general reference in generics, which is a placeholder character, data cannot be added to the container.
- JavaBase 6332 2020-05-16 09:58:42
-
- How to define string in java
- The method of defining a string in Java is: 1. Define it through direct assignment, the specific code is [String str = "Hello";]; 2. Define it through instantiation through the construction method, the specific code is [String str = new String( "Hello");].
- JavaBase 6422 2020-05-15 11:35:41
-
- What is the difference between queue and stack in java
- The difference between a queue and a stack in Java is: 1. The queue is first in, first out, and the stack is first in, last out; 2. The queue is implemented by the Queue interface, and the stack is implemented by the List interface; 3. The stack can only be inserted and deleted at one end of the table Operation, the queue performs insert operations on one end of the table and delete operations on the other end.
- JavaBase 4380 2020-05-15 11:21:44
-
- Can interface implement interface in java?
- Interfaces cannot implement interfaces in java. An interface can inherit one or more interfaces. To inherit an interface, you need to use the extends keyword. A sub-interface inherits the methods of the parent interface, such as [public interface Hockey extends Sports, Event].
- JavaBase 4479 2020-05-15 11:04:17
-
- What are the several states of java threads?
- The several states of java threads are: 1. NEW; 2. RUNNABLE; 3. BLOCKED; 4. WAITING; 5. TIMED_WAITING; 6. TERMINATED.
- JavaBase 2671 2020-05-14 15:53:01
-
- How to declare an array in java
- The method of declaring an array in Java is: taking a one-dimensional array as an example, the method of declaring an array is [array type [] array name], such as [int[] array = {1,2,3}] or [int[] array = new int[] {1,2,3}], which means declaring an array named int type.
- JavaBase 5410 2020-05-14 15:14:56
-
- What is a static variable in java
- Static variables in Java refer to variables modified by the static keyword, also called class variables. Static variables can be accessed directly through the class name, their life cycle depends on the life cycle of the class, and they can be shared by all instances of the class.
- JavaBase 4613 2020-05-14 14:01:52
-
- What is the difference between java variables and constants
- The difference between Java variables and constants is: 1. In the Java coding standards, constant names are required to be in uppercase, and variable names are required to be in lowercase; 2. Constants can only be assigned once, and variables can be assigned multiple times; 3. Constants are used during the running of the program. It cannot be changed, variables can be changed.
- JavaBase 7636 2020-05-14 13:33:34
-
- What is the difference between java interface and abstract class
- The difference between Java interfaces and abstract classes is: 1. Abstract classes can not only have abstract methods, but also instance methods. All methods in the interface are public abstract methods; 2. Subclasses use the extends keyword to inherit abstract classes, and subclasses Use the implements keyword to implement the interface.
- JavaBase 2274 2020-05-14 13:15:40
-
- What are the four commonly used frameworks for java development?
- The four commonly used frameworks for Java development are: 1. SpringMVC, which implements the MVC design pattern; 2. Mybatis, which is an excellent persistence layer framework; 3. Spring, which provides IOC, AOP and other functions; 4. Maven , which is a project management tool.
- JavaBase 12981 2020-05-13 16:20:11
-
- What are the keywords of java exception handling
- The keywords of java exception handling are: 1. try; 2. catch; 3. finally; 4. throw; 5. throws. All exception classes are subclasses inherited from the java.lang.Exception class.
- JavaBase 3881 2020-05-13 13:31:50
-
- What technologies do you need to master for java back-end development?
- The technologies that need to be mastered in java back-end development include: 1. Servlet, Servlet plays the core role in the Web MVC structure; 2. JDBC, RMI, etc.; 3. Spring framework; 4. Combined with hadoop to build java distributed development.
- JavaBase 14679 2020-05-12 14:11:01