回顾方法定义

回顾方法定义

 

```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{

}
}
```

 

posted @ 2021-07-23 23:02  子时未临  阅读(32)  评论(0编辑  收藏  举报