将 eclipse 4.2 与 Java 7 一起使用并尝试实现 List 接口的以下方法,我收到了警告。
public <T> T[] toArray(T[] a) {
return a;
}
警告说:
类型参数 T 隐藏了类型 T
为什么 ?我怎样才能摆脱它?
List 接口也是通用的。确保你没有在你的类中使用 T 作为泛型类型。请注意,在http://docs.oracle.com/javase/6/docs/api/java/util/List.html中,他们使用“E”作为类泛型参数,使用“T”作为 toArray() 泛型参数. 这可以防止重叠。
public class MyList<T> implements List<T> {
// V1 (compiler warning)
public <T> T[] toArray(T[] array) {
// in this method T refers to the generic parameter of the generic method
// rather than to the generic parameter of the class. Thus we get a warning.
T variable = null; // refers to the element type of the array, which may not be the element type of MyList
}
// V2 (no warning)
public <T2> T2[] toArray(T2[] array) {
T variable = null; // refers to the element type of MyList
T2 variable2 = null; // refers to the element type of the array
}
}
另一种选择是您导入了一个名为“T”的类,这就是您收到警告的原因。在发现我有一个无用的导入后,我刚刚解决了我的问题:
org.apache.poi.ss.formula.functions.T
tl;博士:检查你的进口!