Java的方法类似于其它语言的函数,是一段用来完成特定功能的代码片段
- 修饰符:这是可选的,告诉编译器如何调用该方法。定义了该方法的访问类型。
- 返回值类型:方法可能会返回值。
- 方法名:是方法的实际名称。方法名和参数表共同构成方法签名。
- 参数类型:参数就像是一个占位符。当方法被调用时,传递值给参数。参数类型分为形式参数和实参。
- 方法体:方法体包含具体的语句,定义该方法的功能。
- 总结:方法包括一个方法头和方法体
package com.Liu.method;
public class Test2 {
public static void main(String[] args) {
//实际参数:实际调用传递给他的参数
int max = max(10,20);
System.out.println(max);
}
//比大小
//形式参数:用来定义作用的
public static int max(int num1,int num2){
int result = 0;
if (num1==num2){
System.out.println("num1==num2");
return 0;//终止方法
}
if (num1>num2){
result = num1;
}else {
result = num2;
}
return result;
}
}
package com.Liu.method;
public class Test2 {
public static void main(String[] args) {
//实际参数:实际调用传递给他的参数
int max = max(10,10);
System.out.println(max);
}
//比大小
//形式参数:用来定义作用的
public static int max(int num1,int num2){
int result = 0;
if (num1==num2){
System.out.println("num1==num2");
return 0;//终止方法
}
if (num1>num2){
result = num1;
}else {
result = num2;
}
return result;
}
}