java编程思想 第三版 习题讨教做法
各位兄弟:
今在公司看java编程思想 第三版,遇到一个习题,有知道做法的请写下你的代码:(谢谢)
Write a class with a method boolean print(int) that prints a value and returns a boolean. Now overload the method to return a long.
------解决方案--------------------
在JAVA方法区分是通过方法名和参数来做的,这种对重载和覆写都是非法的。
编译器会报错。