回顾方法定义
```java
package com.zishi.oop.demo01;
import java.io.IOException;
public class Demo01 {
public static void main(String[] args) {
}
/*
修饰符 返回值类型 方法名(。。。){
//方法体
return 返回值;
}
*/
//return 结果方法,返回一个结果!
public String sayHello(){
return "hello,world!";
}
public void print(){
return;
}
public int max(int a,int b){
return a>b ? a:b; //三元运算符
}
//数组下标越界: Arrayindexoutofbounds
public void readFile(String file) throws IOException{
}
}
```