0
点赞
收藏
分享

微信扫一扫

Java重载练习--四种不同参数类型的比较

点亮自己的那盏灯 2022-05-03 阅读 51

// 重载练习
四种不同参数类型的比较

题目要求:
比较两个数据是否相等。
参数类型分别为两个byte类型,两个short类型,两个int类型,两个long类型,
并在main方法中进行测试。

public class Demo02MethodOverloadSame {
    public static void main(String[] args) {
        byte a = 10;
        byte b = 20;
        System.out.println(isSame(a,b));

        System.out.println(isSame((short) 20,(short) 20));

        System.out.println(isSame(a: 11, b: 12));

        System.out.println(isSame(a: 10L, b: 10L));
    }

    public static boolean isSame(byte a,byte b) {
        System.out.println("两个byte参数的方法执行!");
        boolean same;
        if (a == b) {
            same = true;
        } else {
            same = false;
        }
        return same;
    }

    public static boolean isSame(short a,short b) {
        System.out.println("两个short参数的方法执行!");
        boolean same = a == b ? true : false;
        return same;
    }

    public static boolean isSame(int a,int b) {
        System.out.println("两个int参数的方法执行!");
        return a == b;
    }

    public static boolean isSame(long a,long b) {
        System.out.println("两个long参数的方法执行!");
        if (a == b) {
            return true;
        } else {
            return false;
        }
    }

}
 

举报

相关推荐

0 条评论