📅  最后修改于: 2020-11-15 04:08:49             🧑  作者: Mango
使用泛型时,类型参数不允许为静态。由于静态变量在对象之间共享,因此编译器无法确定要使用哪种类型。如果允许使用静态类型参数,请考虑以下示例。
package com.tutorialspoint;
public class GenericsTester {
public static void main(String[] args) {
Box integerBox = new Box();
Box stringBox = new Box();
integerBox.add(new Integer(10));
printBox(integerBox);
}
private static void printBox(Box box) {
System.out.println("Value: " + box.get());
}
}
class Box {
//compiler error
private static T t;
public void add(T t) {
this.t = t;
}
public T get() {
return t;
}
}
由于stringBox和integerBox都有一个带有标记的静态类型变量,因此无法确定其类型。因此,不允许使用静态类型参数。