以下代码的运行结果是什么( ) class Supp...
发布于 2022-03-03 16:43:30
以下代码的运行结果是什么( )
class Supper{ public int get() { System.out.println("Supper") return 5 } } public class Sub{ public int get() { System.out.println("Sub") return new Integer("5") } public static void main(String args[]) { new Supper().get() new Sub().get() } }
登录后免费查看答案
关注者
0
被浏览
19