vote up 1 vote down star

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?

flag

47% accept rate
What is the purpose of determining the class? – starblue Feb 12 at 15:27

5 Answers

vote up 15 vote down check
if (obj instanceof C) {
//your code
}
link|flag
vote up 0 vote down

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)

link|flag
vote up 9 vote down

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 getClass() or instanceof.

Any of the suggested methods will do, but just something to keep in mind, design-wise.

link|flag
Yeah, probably 99% of the uses of getClass and instanceof can be avoided with polymorphic method calls. – Bill the Lizard Feb 12 at 15:28
i am in agreement. in this case i'm working with objects generated from xml following a poorly designed schema which i do not have ownership of. – carrier Feb 12 at 15:32
That's generally the case in these situations, legacy code, bad design not in your ownership, etc... – Yuval A Feb 12 at 15:37
Not nessecarily. Sometimes separation of interfaces is good. There are times when you want to know if A is a B, but you don't want to make it mandatory that A is a B, as only A is required for most functionality - B has optional functionality. – MetroidFan2002 Feb 12 at 20:33
vote up 0 vote down

You can use:

Object instance = new SomeClass();
instance.getClass().getName(); //will return the name (as String) (== "SomeClass")
instance.getClass(); //will return the SomeClass' Class object

HTH. But I think most of the time it is no good practice to use that for control flow or something similar...

link|flag
vote up 6 vote down

Use Object.getClass(). It returns the runtime type of the object.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.