概述
方法的定义
-
修饰符
-
返回类型
-
break:跳出switch,结束循环 和return的区别
-
方法名:注意规范就OK 见名知意
-
参数列表:(参数类型,参数名) ...
-
异常抛出:疑问,后面讲解
代码
//Java-零基础学习/src/oop/demo01/Demo01标签:return,定义,回顾,int,void,方法,public,String From: https://www.cnblogs.com/poiuyjoey/p/17963072
package oop;
import java.io.IOException;
//Demo01 类
public class Demo01 {
//main 方法
public static void main(String[] args) {
}
/*
修饰符 返回值类型 方法名(...){
//方法体
return 返回值;
}
*/
//return 结束方法,返回一个结果!
public String sayHello() {
return "hello,world";
}
public void hello() {
return;
}
public int max(int a, int b) {
return a > b ? a : b;//三元运算符!
}
//数组下表越界:Arrayindexoutofbounds
public void readFile(String file) throws IOException {
}
}