欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

方法定义回顾

程序员文章站 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;
}

}

相关标签: java学习 java