当前位置: 移动技术网 > IT编程>开发语言>Java > 重载复习和小练习

重载复习和小练习

2019年12月02日  | 移动技术网IT编程  | 我要评论

卓嗨网,似奶年华,柏元崇

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

/*
题目要求:
比较两个数据是否相等,
参数类型分别是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;
    }
}

如对本文有疑问,请在下面进行留言讨论,广大热心网友会与你互动!! 点击进行留言回复

相关文章:

验证码:
移动技术网