方法的调用和定义
代码
package com.zhan.base_3;
public class Test01_Method {
// 修饰符 返回值类型(void),表示没有返回值 方法名(参数){方法体 }
// main 方法尽量保持简洁干净,把功能模块交给 方法 ,再调用方法即可
public static void main(String[] args) {
int sum = add(1, 2); // 这里的是实际参数 // 输入 add(1,2),按下 alt+ enter 自动生成
System.out.println(sum);
System.out.println(max(10,20));
test();
}
// 自定义方法
// 修饰符 static 很重要,这是 类变量的关键
// return 0; // 终止方法
// 方法1
public static int add(int a, int b){ // 修饰符 返回值类型(int) 方法名(参数,记得定义好数据类型){方法体 }
return a+b; //关键字 return 表示返回值 // 这里 a ,b 是 形式参数
}
//方法2
public static int max(int a,int b){
int result;
if(a>b){
result=a;
} else {
result=b;
}
return result;
}
// 方法3
public static void test(){ // 修饰符 返回值类型(void),表示没有返回值 方法名(空:没有参数){方法体 }
System.out.println("这是没有返回值的方法"); // void 方法 ,没有返回值,不需要 return 关键字
}
}
标签:02,调用,return,定义,int,void,返回值,方法,public
From: https://www.cnblogs.com/zhanjianhai/p/17064474.html