In Java, do class objects have the same heritance relations as the classes they represent?
|
The
And because with generics, |
|||||||||
|
|
You can tell because if you look at the Javadoc you can see that the |
||||
|
|
|
No, there is only one class with the name |
|||
|
|
|
try this code:
however:
|
|||
|
|
|
The reason Class does not extend Class even if Y extends X is that for any generic type G, G does not extend G You might want to look this up in FAQ etc. A bag of apples is not a bag of fruit, even though apple is a fruit; because you can add any fruit to the latter but only apples to the former. |
|||
|
|
|
All Class objects are instances of a Class. If you want to know the hierarchy of a class you can call the getSuperClass() and getInterfaces() Note: you may need to call these recursively to get all super classes and interfaces. |
|||
|
|
|
If I understand your question correctly, this is not the case. The object that represents class of Bear in mind that |
||||
|
|