我调查一般行为
我注意到:
public class Hohol1 {
public class My<T> {
public <E> void test(Collection<E> es) { System.out.println("Collection<E>");
}
public void test(List<Integer> integerList) {
System.out.println("List<Integer>");
for (Integer integer : integerList) {
System.out.println(integer);
}
}
}
public static void main(String[] args) {
My my1 = new Hohol1().new My();
my1.test(new ArrayList<String>() { {add("1");} });
}
}
上面的代码返回
Exception in thread "main" java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer
at GenericsTest.Hohol1$My.test(Hohol1.java:22)
at GenericsTest.Hohol1.main(Hohol1.java:31)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:606)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
但是,如果我使My
非泛型如此
public class Hohol1 {
public class My/*deleted generic type T*/ {
....
}
}
此代码返回Collection<E>
这对我来说是令人惊讶的行为,我不明白为什么会这样。
你怎么看待这件事?
PS我对简洁使用双括号初始化