Home > Java > javaTutorial > body text

What is java method?

青灯夜游
Release: 2019-11-16 15:49:29
Original
3762 people have browsed it

What is java method?

#What is the method in java?

A Java method is a collection of statements that together perform a function.

●Method is an ordered combination of steps to solve a type of problem

●Methods are contained in classes or objects

●Methods are created in the program and elsewhere Quoted

Advantages of Java methods

1. Make the program shorter and clearer.

2. Conducive to program maintenance.

3. It can improve the efficiency of program development.

4. Improved code reusability.

Naming rules for methods

1. It must start with a letter, '_' or '$'.

2. It can include numbers but cannot start with them.

Definition of method

Generally, defining a method includes the following syntax:

修饰符 返回值类型 方法名(参数类型 参数名){ 
...  
方法体  
...  
return 返回值; 
}
Copy after login

The method includes a method header and a method body. Here are all the parts of a method:

● Modifiers: Modifiers, which are optional, tell the compiler how to call the method. Defines the access type for this method.

●Return value type: Methods may return values. returnValueType is the data type of the method return value. Some methods perform the required operation but do not return a value. In this case, returnValueType is the keyword void.

●Method name: It is the actual name of the method. The method name and parameter list together form the method signature.

● Parameter type: The parameter is like a placeholder. When the method is called, values ​​are passed to the parameters. This value is called an actual parameter or variable. The parameter list refers to the parameter type, order and number of parameters of the method. Parameters are optional and methods can contain no parameters.

● Method body: The method body contains specific statements that define the function of the method.

What is java method?

The above is the detailed content of What is java method?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!