方法定义回顾
public class oopDemo1 {
public static void main(String[] args) {
}//方法定义的回顾
/*
修饰符 返回值类型 方法名(参数){
方法体
return 返回值;
}
*/
public String LUO(){
return "luohzshr";//return是一个结束方法,返回结果
}
/*
void是一个空
*/
public void luo(){
return;
}
public int num(int a,int b){
return a>b ? a : b;
}
}