If class B and class C extend class A and I have an object of type B or C, how can I determine which it instantiates?
|
|
|||
|
|
|
|
|||
|
|
|
|
there is also a .isInstance method on the "Class" class. if you get an objects class via myBanana.getClass() you can see if your object myApple is an instance of the same class as myBanana via myBanana.getClass().isInstance(myApple) |
||
|
|
|
|
Any use of any of the methods suggested is considered a code smell which is based in a bad OO design. If your design is good, you should not find yourself needing to use Any of the suggested methods will do, but just something to keep in mind, design-wise. |
||||||||
|
|
|
You can use:
HTH. But I think most of the time it is no good practice to use that for control flow or something similar... |
||
|
|
|
|
Use Object.getClass(). It returns the runtime type of the object. |
||
|
|
