Which of the following is better?

a instanceof B

or

B.class.isAssignableFrom(a.getClass())

The only difference that I know of is, when 'a' is null, the first returns false, while the second throws an exception. Other than that, do they always give the same result?

link|improve this question

feedback

9 Answers

up vote 66 down vote accepted

When using "instanceof", you need to know the class of "B" at compile time. When using "isAssignableFrom" it can be dynamic and change during runtime.

link|improve this answer
feedback

instanceof can only be used with reference types, not primitive types. isAssignableFrom() can be used with any class objects:

a instanceof int  // syntax error
3 instanceof Foo  // syntax error
int.class.isAssignableFrom(int.class)  // true

See http://java.sun.com/javase/6/docs/api/java/lang/Class.html#isAssignableFrom(java.lang.Class).

link|improve this answer
feedback

A more direct equivalent to a instanceof B is

B.class.isInstance(a)

This works (returns false) when a is null too.

link|improve this answer
feedback

Apart from basic differences mentioned above, there is a core subtle difference between instanceof operator and isAssignableFrom method in Class.

Read instanceof as “is this (the left part) the instance of this or any subclass of this (the right part)” and read x.getClass().isAssignableFrom(Y.class) as “Can I write X x = new Y()”. In other words, instanceof operator checks if the left object is same or subclass of right class, while isAssignableFrom checks if we can assign object of the parameter class (from) to the reference of the class on which the method is called.
Note that both of these consider the actual instance not the reference type.

Consider an example of 3 classes A, B and C where C extends B and B extends A.

B b = new C();

System.out.println(b instanceof A); //is b (which is actually class C object) instance of A, yes. This will return true.  
System.out.println(b instanceof B); // is b (which is actually class C object) instance of B, yes. This will return true.  
System.out.println(b instanceof C); // is b (which is actually class C object) instance of C, yes. This will return true. If the first statement would be B b = new B(), this would have been false.
System.out.println(b.getClass().isAssignableFrom(A.class));//Can I write C c = new A(), no. So this is false.
System.out.println(b.getClass().isAssignableFrom(B.class)); //Can I write C c = new B(), no. So this is false.
System.out.println(b.getClass().isAssignableFrom(C.class)); //Can I write C c = new C(), Yes. So this is true.
link|improve this answer
2  
You got it wrong, see this code pastebin.com/tfCFs0QY – Maxim Veksler Sep 9 '10 at 20:15
1  
b instanceof A is equivalent to A.class.isAssignableFrom(b.getClass()) (as the OP noticed). Your example is correct but irrelevant. – Karu Apr 12 at 3:11
feedback

There is yet another difference. If the type (Class) to test against is dynamic, e.g. passed as a method parameter, then instanceof won't cut it for you.

boolean test(Class clazz) {
   return (this instanceof clazz); // clazz cannot be resolved to a type.
}

but you can do:

boolean test(Class clazz) {
   return (clazz.isAssignableFrom(this.getClass())); // okidoki
}

Oops, I see this answer is already covered. Maybe this example is helpful to someone.

link|improve this answer
1  
actually no answer is really correct isAssignableFrom work w/ classes, Class.isInstance is the analog of 'instanceof' – bestsss Jan 25 '11 at 16:23
feedback

There is also another difference:

null instanceof X is false no matter what X is

null.getClass().isAssignableFrom(X) will throw a NullPointerException

link|improve this answer
1  
-1, incorrect: null instanceof X (where X is some class known at compile time) will always return false. – Caspar Jul 4 '11 at 4:19
1  
@Caspar while you are correct, the basic idea was a good point. I edited the post so that it is correct. – erickson Nov 1 '11 at 17:00
feedback

Consider following situation. Suppose you want to check whether type A is a super class of the type of obj, you can go either

... A.class.isAssignableFrom(obj.getClass()) ...

OR

... obj instanceof A ...

But the isAssignableFrom solution requires that the type of obj be visible here. If this is not the case (e.g., the type of obj might be of a private inner class), this option is out. However, the instanceof solution would always work.

link|improve this answer
1  
That is not true. Please see "Adam Rosenfield" comment stackoverflow.com/questions/496928/… – Maxim Veksler Sep 9 '10 at 20:05
Could you elaborate "That is not true"? The comment you refer to has nothing to do with the scenario in my post. I do have some test code that backs up my explanation. – algebra Sep 10 '10 at 16:18
feedback

some tests we did in our team show that A.class.isAssignableFrom(B.getClass()) works faster than B instanceof A. this can be very useful if you need to check this on large number of elements.

link|improve this answer
4  
Hm, if you have a bottleneck in instanceof, I believe you have serious design problems... – sleske May 27 '11 at 14:16
feedback

This thread provided me some insight into how instanceof differed from isAssignableFrom, so I thought I'd share something of my own.

I have found that using isAssignableFrom to be the only (probably not the only, but possibly the easiest) way to ask one's self if a reference of one class can take instances of another, when one has instances of neither class to do the comparison.

Hence, I didn't find using the instanceof operator to compare assignability to be a good idea when all I had were classes, unless I contemplated creating an instance from one of the classes; I thought this would be sloppy.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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