What is the result of the following code execution?

import java.util.Arrays;

class Generic<T extends Number> { 
    private T arr[] = {1, 2, 3, 4, 5};
 
    public String toString(){ 
        return Arrays.toString(arr);
    } 
} 

public class Test { 
    public static void main(String [] args) { 
        Generic<Double> obj = new Generic<Double>();
        System.out.println(obj); 
    } 
}
Explanation
Compilation error during an array declaration.
Initialization lists cannot be used to initialize parameterized arrays.

Следи за CodeGalaxy

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

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