What will happen as a result of compiling and running the following code?

class A {
    int i = 0;
    public int increment() {
        return ++i;
    }
}

public class B extends A {
    int i = 1;                                        // 1
    public int increment() {
        return ++i;
    }
    
    public static void main(String[] args) {
        B b = (B) new A();                            // 2
        System.out.println(b.increment());
    }
}

Следи за CodeGalaxy

Мобильное приложение Beta

Get it on Google Play
Обратная Связь
Продолжайте изучать
тесты по Java
Cosmo
Зарегистрируйся сейчас
или Подпишись на будущие тесты