What will be printed out to console?

public class Z {
    public void print( Object o ) {
        System.out.println( "Object" );
    }

    public void print( String str ) {
        System.out.println( "String" );
    }

    public void print( Integer i ) {
        System.out.println( "Integer" );
    }
  
    public static void main(String[] args) {
        Z z = new Z();
        z.print( null );
    }
}
Explanation
If class contains several overloaded methods and their arguments are not in the same hierarchy, then parameter type should by explicitly specified during the method call.

Следи за CodeGalaxy

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

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