重载复习和小练习

2019-12-01 16:02:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

重载复习和小练习

有兴趣的可以看看注释里面的题目要求,自己写写或者看看下面的用别的方式完成目标。

/*
题目要求:
比较两个数据是否相等,
参数类型分别是byte,short,int,long
然后在main方法中测试
*/
public class HelloWorld {
    public static void main(String[] args) {
        byte x = 10;
        byte y = 20;
        System.out.println(sum(x, y));
        System.out.println(sum((short) 20, (short) 20));
        System.out.println(sum(20, 10));
        System.out.println(sum(20L,10L));
    }

    public static boolean sum(byte x, byte y) {
        if (x == y) {
            return true;
        } else {
            return false;
        }
    }
    public static boolean sum(short x, short y) {
        boolean sum = x == y ? true : false;
        return sum;
    }
    public static boolean sum(int x, int y) {
        return x == y;
    }
    public static boolean sum(long x, long y) {
        boolean max;
        if (x == y) {
            max = true;
        } else {
            max = false;
        }
        return max;
    }
}
/*
题目要求:
比较两个数据是否相等,
参数类型分别是byte,short,int,long
然后在main方法中测试
*/
public class HelloWorld {
    public static void main(String[] args) {
        byte x = 10;
        byte y = 20;
        System.out.println(sum(x, y));
        System.out.println(sum((short) 20, (short) 20));
        System.out.println(sum(20, 10));
        System.out.println(sum(20L,10L));
    }

    public static boolean sum(byte x, byte y) {
        if (x == y) {
            return true;
        } else {
            return false;
        }
    }
    public static boolean sum(short x, short y) {
        boolean sum = x == y ? true : false;
        return sum;
    }
    public static boolean sum(int x, int y) {
        return x == y;
    }
    public static boolean sum(long x, long y) {
        boolean max;
        if (x == y) {
            max = true;
        } else {
            max = false;
        }
        return max;
    }
}


原文链接:https://www.cnblogs.com/gz18221/p/11968197.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:java学习基础知识入门

下一篇:IDEA超级实用的几个快捷键