How to I test if a is a subclass of b?
Class<?> a = A.class;
Class<?> b = B.class;
|
How to I test if
|
|||
|
|
|
If you want to know whether or not a
If you're interested in whether or not an instance is of a particular type, use
Note that these will return
If you want to check for direct superclass/subclass relationships, Tim has provided an answer as well. |
|||||||||
|
|
You want to know if
Additionally, if you want to know that
|
|||
|
|