当前位置:首页 > IT技术 > 编程语言 > 正文

java方法
2022-05-11 11:08:56

public class Demo02 {
    public static void main(String[] args) {
        int max = max(10,10);
        System.out.println(max);

    }
    //比大小
    public static int max(int num1,int num2){
        int result = 0;
        if(num1==num2){
            System.out.println("num1=num2");
            return 0;//终止方法
        }
        if(num1>num2){
            result = num1;
        }else{
            result = num2;
        }
        return  result;

    }
}

重载:在一个类中,有相同的函数名称,但形参不同的函数

方法的重载规则:
方法名称必须相同
参数列表必须不同
方法的返回类型可以相同也可以不同
仅仅返回类型不同不足以成为方法的重载

public class Demo02 {
    public static void main(String[] args) {
        double max = max(10,10,10);
        System.out.println(max);

    }
    //比大小
    public static int max(int num1,int num2,int num3){
        int result = 0;
        if(num1==num2){
            System.out.println("num1=num2");
            return 0;//终止方法
        }
        if(num1>num2){
            result = num1;
        }else{
            result = num2;
        }
        return  result;

    }
    public static int max(int num1,int num2){
        int result = 0;
        if(num1==num2){
            System.out.println("num1=num2");
            return 0;//终止方法
        }
        if(num1>num2){
            result = num1;
        }else{
            result = num2;
        }
        return  result;

    }


}


可变长参数(只能放在参数的最后一位)

public class Demo04 {
    public static void main(String[] args) {
        Demo04 demo04 = new Demo04();
        demo04.test(1,2,3,4,5);
    }
    public void test(int...i){
        System.out.println(i[4]);
    }
}


递归
n!

public class Demo05 {
    public static void main(String[] args) {
        System.out.println(f(5));
    }
    public static int f(int n){
        if (n==1){
            return 1;
        }else{
            return n*f(n-1);
        }
    }

}

本文摘自 :https://www.cnblogs.com/

开通会员,享受整站包年服务立即开通 >