What will be the output of the following code?

interface I_A { public void out1(); }
interface I_B { public void out2(); }

class Impl implements I_A, I_B { // 1
    public void out2() {
        System.out.print("2");
    }
    public void out1() {
        System.out.print("1");
    }
}

public class Test {
    public static void main(String[] args) {
        Impl impl = new Impl();
        I_A a;
        a = impl;
        a.out1();
        ((I_B) a).out2();  // 2
    }
}
Explanation
It is permitted to implement more than one interface in Java. Since Impl class implements both interfaces, casting an Impl object to either of them is also permitted.

Следи за CodeGalaxy

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

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