Javaジェネリックス-静的フィールドなし
ジェネリックスを使用すると、型パラメーターを静的にすることはできません。静的変数はオブジェクト間で共有されるため、コンパイラーは使用するタイプを判別できません。静的型パラメーターが許可されている場合は、次の例を検討してください。
例
package com.tutorialspoint;
public class GenericsTester {
public static void main(String[] args) {
Box<Integer> integerBox = new Box<Integer>();
Box<String> stringBox = new Box<String>();
integerBox.add(new Integer(10));
printBox(integerBox);
}
private static void printBox(Box box) {
System.out.println("Value: " + box.get());
}
}
class Box<T> {
//compiler error
private static T t;
public void add(T t) {
this.t = t;
}
public T get() {
return t;
}
}
stringBoxとintegerBoxはどちらも開始された静的型変数を持っているため、その型を判別できません。したがって、静的タイプのパラメーターは許可されません。