下面这个语句中
想实现类似 !T.equals(Apple.class 所要表达的功能
如何做?
class Pool<T> {
Long id;
String name;
T product;
...
void funcForApple(){
if(!T.equals(Apple.class)){
throw new TypeMismatchException(...)
}
}
}
product instanceof Apple