Мой код
Как вы вызываете конструктор суперкласса в подклассе, чтобы этот код работал?
class Ale { protected int x = 1; public Ale( int xx ) { x = xx; } } class Bud extends Ale { private int y = 2; public void display() { System.out.println("x = " + x + " y = " + y); } }
Вы можете вызвать супер конструктор, как это,
class Ale { protected int x = 1; public Ale(int xx) { x = xx; } } class Bud extends Ale { Bud() { super(75); } private int y = 2; public void display() { System.out.println("x = " + x + " y = " + y); } }