public class Demo{
举一反三
- 在Demo类中 public class Demo{ public Demo(){} public void Demo(int x){} } 构造方法Demo重载了
- public class Demo { public Demo(){} public void Demo(int x){} } 上述代码中的构造方法Demo重载了
- 下列程序运行结果是( ) public class Demo { public static void main(String[] args) { Demo demo = new Demo(); demo.show(new Car() { public void run() { System.out.println("demo run"); } }); } public void show(Car c) { c.run(); } }abstract class Car { public void run() { System.out.println("car run..."); } }
- 6、阅读下列代码,构造方法()可以存在于上述Demo类中。public class Demo{......Demo(){}......} A: public Demo(){} B: private Demo(){} C: public Demo( int age ){} D: String name(){}
- (7-1)以下程序的运行结果是( )。 class A{ A(){ System.out.print(10); } } public class Demo extends A { public static void main(String[] args) { new A(); new Demo(); } }