【单选题】class A{ public void display(){ System.out.println("A"); } public static void show(){ System.out.println("static A"); } } class B extends A{ public void display(){ System.out.println("B"); } public st...
A.
编译失败,因为new B()的对象无法赋值给a
B.
编译失败,因为B类不能覆盖A类的静态方法show
C.
编译成功,运行结果是输出: B static B
D.
编译成功,运行结果是输出: B static A