Java 泛型 - 无instanceOf



由于编译器使用类型擦除,运行时也不会保留类型参数的记录,因此运行时无法使用instanceOf运算符验证Box<Integer>和Box<String>之间的差异。

Box<Integer> integerBox = new Box<Integer>();

//Compiler Error:
//Cannot perform instanceof check against 
//parameterized type Box<Integer>. 
//Use the form Box<?> instead since further 
//generic type information will be erased at runtime
if(integerBox instanceof Box<Integer>) { }
广告