luohzzz

导航

方法定义回顾

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;
}
}

posted on 2021-04-29 17:41  luohzzz  阅读(42)  评论(0编辑  收藏  举报