1、方法

package methodd;

public class Demo01 {
    //main方法 public static是修饰符,void是返回值,
    public static void main(String[] args) {
        int test = add(1,2); //这里的a: b:不需要输入,只需要输入1,2就会自动出现,如果手动输入会报错
        System.out.println(test);
    }


    //加法
    public static int add(int a,int b){ //int是返回值类型,add是方法名。加上static之后,就可以变成类方法被其他方法调用
        return a+b;
    }

}
Posted on 2021-09-21 23:07  阿黎~  阅读(14)  评论(0编辑  收藏  举报