简体   繁体   中英

java — generic instance of (element instanceof E)

I would like to determine if an object is an instanceof a generic type. How may I do this?

something like if (someVariable instanceof E){} Thanks!

EDIT

I think I found an answer: if (getClass() != obj.getClass()) {return false;}

由于类型擦除,这是不可能的。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM