Im overriding an equals() method and I need to know if the object is an instance of a Event's subclass (Event is the superclass). I want something like "obj subclassof Event". How can this be made?
Thanks in advance!
|
Im overriding an equals() method and I need to know if the object is an instance of a Event's subclass (Event is the superclass). I want something like "obj subclassof Event". How can this be made? Thanks in advance! |
|||
|
|
|||||
|
|
if(myObject instanceof Event && myObject.getClass() != Event.class) {
// then I'm an instance of a subclass of Event, but not Event itself
}
|
|||||||
|
|
Really
Since Adrian was a little ahead of me, I will also add a way you could do this with a general-purpose method.
Use this by:
|
|||||
|
|
There is no direct method in Java to check subclass.
The you could do |
||||
|
|
|
If obj is a subclass of Event then it is an instanceof. obj is an instanceof every class/interface that it derives from. So at the very least all objects are instances of Object. |
|||
|
|
|
You might want to look at |
|||||
|
instanceofwhich caused you to ask this question? Please post some code with your attempts, expectations and unexpectations. – BalusC Apr 23 '10 at 15:29