vote up 6 vote down star
1

What is the preferred method to achieve the C++ equivalent of instanceof?

flag

Preferred by whom? – stefan.ciobaca Feb 1 at 9:38
Preferred by performance and compatibility... – Yuval A Feb 1 at 9:46

1 Answer

vote up 12 vote down check

Try using:

NewType* v = dynamic_cast<NewType*>(old);
if(v != 0) {
   // old was safely casted to NewType
   v->doSomething();
}

This requires your compiler to have rtti support enabled.

EDIT: I've had some good comments on this answer!

Every time you need to use a dynamic_cast (or instanceof) you'd better ask yourself whether it's a necessary thing. It's generally a sign of poor design.

Typical workarounds is putting the special behaviour for the class you are checking for into a virtual function on the base class or perhaps introducing something like a visitor where you can introduce specific behaviour for subclasses without changing the interface (except for adding the visitor acceptance interface of course).

As pointed out dynamic_cast doesn't come for free. A simple and consistently performing hack that handles most (but not all cases) is basically adding an enum representing all the possible types your class can have and check whether you got the right one.

if(old->getType() == BOX) {
   Box* box = static_cast<Box*>(old);
   // Do something box specific
}

This is not good oo design, but it can be a workaround and its cost is more or less only a virtual function call. It also works regardless of RTTI is enabled or not.

Note that this approach doesn't support multiple levels of inheritance so if you're not careful you might end with code looking like this:

// Here we have a SpecialBox class that inherits Box, since it has its own type
// we must check for both BOX or SPECIAL_BOX
if(old->getType() == BOX || old->getType() == SPECIAL_BOX) {
   Box* box = static_cast<Box*>(old);
   // Do something box specific
}
link|flag
class have to have at least one virtual method for this to work – vava Feb 1 at 9:44
That's generally the case when you do a "instanceof" check – Laserallan Feb 1 at 9:47
If you have to use instanceof, there is, in most cases, something wrong with your design. – mslot Feb 1 at 11:07
Don't forget that dynamic_cast is an operation with big cost. – Klaim Feb 1 at 13:18

Your Answer

Get an OpenID
or

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