What will the following code print out:

public class Comparation {
    public static Boolean assert(boolean bool) {
        return bool;
    }
    public static void main(String[] args) {
        int i1 = 1;
        Integer i2 = 1;
        System.out.println("assert=" + assert(i1 == i2));
    }
}
Explanation
As of Java release 1.4 assert is a keyword, and may not be used as an identifier.

Следи за CodeGalaxy

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

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