Are static members of a generic class different for different types in Java?
问题 @Spence asked this Previous Question. So, how's that work in Java? Generic types are discarded at runtime in Java, so what happens to static variables of classes instantiated with different generic types? 回答1: Static members in Java can't have generic type arguments from the class that contains them. public class Gen<T> { public static T foo; // compiler error } 回答2: Static variables are shared among all the instances of that type, even of different type parameters. From the generics tutorial