I was wondering how computationally expensive is using instanceof operator in java and wanted to know if there are any better alternatives available
|
|
The alternative is to avoid using As the |
|||||||||||||||
|
|
It'll have around the same performance as a (successful) cast, as it is doing much the same thing. Indeed, the task is roughly equivalent to a "virtual" method call. On sane implementations: For classes, it's just a matter of getting the runtime class and looking at a fixed offset to check the superclass (so long as you don't have an inheritance chain of more than eight classes for HotSpot). Interfaces are a bit more tricky, but generally have the last two used cases for any particular runtime class cached. So that's also fast. |
|||
|
|
|
I assume you have actually profiled your code and found that your use of If all you're doing is code like this:
Then it might be possible to try the cast first, and allow the
Now, while it may be premature optimization, it would not be premature to rethink your design. Overuse of
|
|||
|
|
|
If you want to check if the object is an instance of a certain class (but not if it
Otherwise since the |
|||||
|