Will the code compile? If so, what will be the result of its implementation?

public class Autoboxing {
    public static void main(String[] args) {
        Integer oInt1 = null;
        Integer oInt2 = 0;
        final int int1 = oInt1;
        final int int2 = oInt2;
        System.out.println(int1 == int2);
    }
}
Explanation
Java.lang.NullPointerException will appear in the 5th row, because the compiler translates the expression

final int int1 = oInt1;
in

final int int1 = oInt1.intValue();

Следи за CodeGalaxy

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

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