Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As I've always understood it, the main cases where an instanceof is appropriate are:

  1. Implementing Object.equals(Object). So if I were writing a List class, and not extending AbstractList for whatever reason, I would implement equals(o) by first testing o instanceof List, and then comparing elements.
  2. A significant (algorithmic?) optimization for a special case that does not change semantics, but only performance. For example, Collections.binarySearch does an instanceof RandomAccess test, and uses a slightly different binary search for RandomAccess and non-RandomAccess lists.

I don't think instanceof represents a code smell in these two cases. But are there any other cases where it is sensible to use instanceof?

share|improve this question

3 Answers

up vote 3 down vote accepted

Legacy code or APIs outside of your control are a legitimate use-case for instanceof. (Even then I'd rather write an OO layer over it, but timing sometimes precludes a redesign like that.)

In particular, factories based on external class hierarchies seem a common usage.

share|improve this answer
Hmmmmm. Any examples in mind? I haven't encountered that need with any APIs I've played with. – Louis Wasserman Jan 22 '12 at 0:04
@LouisWasserman Anything written in a non-OO fashion, for example, we had a third-party API where various FTP classes neither extended a common base class nor implemented an interface. In order to treat them the "same" our quick workaround was some trivial instanceof checks. Eventually we put a layer over the top. There are a ton of bad APIs in the world. – Dave Newton Jan 22 '12 at 0:17
Ew. I suppose I should be grateful for not having had to deal with any of those beasts. – Louis Wasserman Jan 22 '12 at 2:05

Your first case is an example where I would not use the instanceof operator, but see whether the classes are equal:

o != null && o.getClass() == this.getClass()

This will avoid that an instance of A extends B and B are considered equal

Other cases I can immediately think of but I am pretty sure more valid cases are available

  • factory instances where you have for example a canCreate and create method which receive a general interface as parameter. Each of the factories can handle a specific implementation of the interface, so it would require an instanceof. Defining only the interface in the factory abstract class/interface allows for example to write a composite factory
  • composite implementations (as illustrated in my first example)
share|improve this answer
But in the List case, you want an instance of B extends A and C extends A to be considered equal. – Louis Wasserman Jan 22 '12 at 0:04
Your first point is sometimes very important. However, there are applications where you want a subclass instance to be equal to a parent class instance. In that case, instanceof makes more sense than checking class identity. Also, instanceof is equivalent to your class identity check for final classes. I haven't benchmarked the two methods, but wouldn't be surprised if instanceof is a tiny bit faster in that case. – Ted Hopp Jan 22 '12 at 0:07
@LouisWasserman But instanceof will fail in that case: anA instanceof aB will be false. – Ted Hopp Jan 22 '12 at 0:10
Sorry for the confusion -- let's clear this up. You want ArrayList.equals(LinkedList) to pass, so ArrayList.equals(o) tests if o instanceof List. So I wouldn't be writing anA instanceof B, but someB instanceof A, where e.g. A is List, and B is ArrayList/LinkedList/whatever. – Louis Wasserman Jan 22 '12 at 2:03

As you have mentioned, the "correct" uses of instanceof are rather limited. As far as I know, you have basically summed up the two main uses.

However you can generalize your statements a bit though as follows:

  1. Type-checking before necessary casts.
  2. Implementing special case scenarios that depend on very particular class instances
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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