Java泛型不能使用instanceof運算符
因爲編譯器使用類型擦除,運行時不會跟蹤類型參數,所以在Box <Integer>
和Box <String>
之間的運行時差異無法使用instanceOf
運算符進行驗證。所以類似下面的代碼用法是錯誤的 ~!
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>){ }