试题详情
单项选择题 class ClassA {  public int numberOfinstances;  protected ClassA(int numberOfinstances) {  this.numberOflnstances = numberOfinstances;  }  }  public class ExtendedA extends ClassA {  private ExtendedA(int numberOfinstances) {  super(numberOflnstances);  }  public static void main(String[] args) {  ExtendedA ext = new ExtendedA(420);  System.out.print(ext.numberOflnstances);  }  }  Which is true?() 

A、 420 is the output.

B、 An exception is thrown at runtime.

C、 All constructors must be declared public.

D、 Constructors CANNOT use the private modifier.

E、 Constructors CANNOT use the protected modifier.

  • A
  • 关注下方微信公众号,在线模考后查看

热门试题