Home  >  Article  >  Java  >  What is the difference between constructor methods and ordinary methods in java

What is the difference between constructor methods and ordinary methods in java

王林
王林Original
2020-05-16 11:44:503259browse

What is the difference between constructor methods and ordinary methods in java

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 method in the class, even if you If you don’t write it, the system will automatically add a parameterless constructor. The interface is not allowed to be instantiated, so there is no construction method in the interface;

(Video tutorial recommendation: java video)

3. The construction method cannot be static , final, synchronized, abstract and native and other keyword modifications;

4. The constructor is automatically executed when initializing the object, and generally cannot be called explicitly and directly. When there are multiple constructors in the same class, the Java compilation system will automatically correspond one-to-one according to the number of parameters in the last parentheses during initialization and the parameter types to complete the constructor call.

Recommended tutorial: Getting started with java development

The above is the detailed content of What is the difference between constructor methods and ordinary methods in java. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn