20190925Java课堂记录(二)

1. testrandom

public class test2{
    public static void main(String[] args) {
        int[] n=new int [1001];
        n[0]=1;
        for(int i=0;i<1000;++i){
            n[i+1]=(16807*n[i]+0)%2147483647;
            System.out.println(n[i]);
        }
        }
    }
    

2. MethodOverload

// MethodOverload.java
// Using overloaded methods

public class MethodOverload {

    public static void main(String[] args) {
        System.out.println("The square of integer 7 is " + square(7));
        System.out.println("\nThe square of double 7.5 is " + square(7.5));
    }

    public static int square(int x) {
        return x * x;
    }

    public static double square(double y) {
        return y * y;
    }
}

上述示例代码展示了Java的“方法重载(overload)”特性。

满足以下条件的两个或多个方法构成“重载”关系: (1)方法名相同; (2)参数类型不同,参数个数不同,或者是参数类型的顺序不同。

注意:方法的返回值不作为方法重载的判断条件

posted @ 2019-09-27 18:55  你的深渊  阅读(116)  评论(0编辑  收藏  举报