方法定义回顾
程序员文章站
2024-03-25 23:51:16
...
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;
}
}
下一篇: PHP常用的显示与逻辑分离思想