给定如下Java程序片断: class A{ public A (){ System.out.println("A"); } } class B extends A{ public B(){ System.out.println("B"); } public static void main(String[] args){ B b=new B(); } } 上述程序将()。
- A、不能通过编译
- B、通过编译,输出为:A B
- C、通过编译,输出为:B
- D、通过编译,输出为:A
正确答案:B
答案解析:有
微信扫一扫手机做题