欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

方法

程序员文章站 2022-06-21 14:50:17
...

方法

方法:封装一个特定功能的代码块

		方法又叫函数
	#### 方法的好处
		- 封装特定功能
		- 反复使用
		- 减少代码重复

语法格式

	public static void main(String[] args){
		//方法体
}
- public修饰词
- static静态的,修饰词
- void 返回值类型
- main 方法名
- (参数列表)
- {方法的作用域}

修饰词 返回值类型 方法名(参数列表){方法体}

  • 注意:方法是不可以嵌套

参数列表

  • 形参:形式参数,定义方法时,参数列表内的参数为形式参数
  • 实参:调用方法时传递的参数
    传入两个参数,比较大小:
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		System.out.println("请输入:");
		cp(scan.nextInt(),scan.nextInt());//实参
		scan.close();
	}
	public static void cp(int a,int b){//形参
		if(a>b){
			System.out.println(a+"大");
		}else{
			System.out.println(b+"大");
		}
	}
相关标签: 方法