Олимпиадный тренинг

Задача . 34745


Задача

Темы:
Consider the following class declarations.

public class Base
{
    private int myVal;
    public Base()
    { myVal = 0; }
    public Base(int x)
    { myVal = x; }
}
public class Sub extends Base
{
    public Sub()
    { super(0); }
}
 
Which of the following statements will NOT compile?

A) Base b1 = new Base();
B) Base b2 = new Base(5);
C) Base s1 = new Sub();
D) Sub s2 = new Sub();
E) Sub s3 = new Sub(5);

time 1000 ms
memory 32 Mb
Правила оформления программ и список ошибок при автоматической проверке задач

Статистика успешных решений по компиляторам
Комментарий учителя