回顾方法的定义
break : 跳出switch,结束整个循环;continue:结束一次循环。
return:代表方法结束,return的返回值必须和返回值类型相同。结束方法,返回一个结果(空或者其他类型)。
方法名:注意规范就ok,见名知意。
参数列表:(参数类型,参数名)
异常抛出:疑问
1 package oop.demo01; 2 3 import java.io.IOException; 4 5 //Demo01 类 6 public class Demo01 { 7 //main方法 8 public static void main(String[] args) { 9 10 } 11 /* 12 修饰符 返回值类型 方法名(参数){ 13 方法体 14 ruturn 返回值; 15 } 16 */ 17 //return : 结束方法,返回一个结果。 18 public String sayHello(){ 19 return "Hello,World!"; 20 } 21 public void hello(){ 22 return; 23 } 24 public int max(int a , int b ){ 25 return a > b ? a : b;//三元运算符 26 } 27 //数组下标越界: Arrayindexoutofbunds 28 //抛出异常 29 public void readFile(String file) throws IOException{ 30 31 } 32 }