1、定义
封装了一些算法,方便代码的复用。
2、方法的语法
五部分内容
修饰词 返回值类型 方法名 (参数列表){
方法体
}
修饰词:用来表示方法的可见范围
返回值类型:方法的计算结果类型
方法名:是方法的标识,使用方法就是使用这个标识来调用
参数列表:方法计算的前提条件
方法体:方法的计算过程,如果有返回值需要使用return返回方法的结果。
3、方法实例
/**
* java的方法
*/
public class Demo01 {
public static void main(String[] args) {
//打印任意行Hello World
Scanner scanner = new Scanner(System.in);
System.out.println("请输入打印的行数:");
int sc = scanner.nextInt();
test(sc);
}
/**
*public static 修饰词
* void 返回值类型
* test 方法名
* sc 参数,可以是多个,用“,”分隔开
* for循环 方法体
*/
public static void test(int sc) {
for (int i = 0; i < sc; i++) {
System.out.println("Hello world!");
}
}
}