题目内容

I hope it's ().

查看答案
更多问题

下列程序运行结果是( ) public class Demo { public static void main(String[] args) { Demo demo = new Demo(); demo.show(new Car() { public void run() { System.out.println("Jeep run"); } }); } public void show(Car c) { c.run(); } }abstract class Car { public void run() { System.out.println("car run..."); } }

A. car run
B. Jeep run
C. 无结果
D. 程序编译报错

阅读下列的程序 public class Example { public static void main(String[] args) { new Father () { public void show() { System.out.println("helloworld"); } }.show(); }}class Father { public void show() { System.out.println("hellofather"); }}下列选项中,程序的运行结果是( )·

A. hellofather
B. helloworld
C. 编译报错
D. 编译通过,运行报错

下列选项中,哪个关键字可以修饰方法内的局部变量?()

A. abstract
B. final
C. static
D. private

一个具体类实现接口时,需要重写接口中的()

A. 默认方法
B. 局部变量
C. 抽象方法
D. 类方法

答案查题题库