重载复习和小练习
程序员文章站
2022-07-01 16:34:31
有兴趣的可以看看注释里面的题目要求,自己写写或者看看下面的用别的方式完成目标。 ......
有兴趣的可以看看注释里面的题目要求,自己写写或者看看下面的用别的方式完成目标。
/* 题目要求: 比较两个数据是否相等, 参数类型分别是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; } }
推荐阅读
-
1.java小作业-计算1到100的整合-指定输入多少行输出就打印多少行-打印24小时60分钟每一分钟-重载基础练习-面向java编程初学者
-
JavaSE小笔记--25(IO流初识5配置文件和File递归练习)
-
[前端练习小Demo]分别用jquery和vue实现轮播图
-
重载复习和小练习
-
Python小练习:StringIO和BytesIO读写操作的小思考
-
1.java小作业-计算1到100的整合-指定输入多少行输出就打印多少行-打印24小时60分钟每一分钟-重载基础练习-面向java编程初学者
-
[前端练习小Demo]分别用jquery和vue实现轮播图
-
重载复习和小练习
-
JavaSE复习日记 : 方法的调用和方法的重载
-
JavaSE复习日记 : 方法的调用和方法的重载