Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Will null instanceof SomeClass return false or throw a NullPointerException

share|improve this question
13  
Finding this question has become the result of research effort for lots of people using google. +1 – Glen Lamb Sep 20 '12 at 10:49
3  
What makes this more special than millions of other trivially testable one-liners? We could flood the site with nothing but "does X return Y or not?" questions, but that would kind of ruin it as a useful resource for people with real questions. – Lord Torgamus Oct 26 '12 at 14:45
15  
There's no such thing as a bad question; there are only bad answers. Because someone else typed in this question and got a good answer, I was able to type it into Google and have the answer in 2 seconds rather than in the 2 minutes it would have taken me to write the test myself. – ArtOfWarfare Nov 15 '12 at 19:51
1  
I too Googled it. This was the first hit. Creating more hits for Google to find is not futile, so still some respect to the OP. – NickJ Jan 13 at 13:50

3 Answers

up vote 101 down vote accepted

No, a null check is not needed before using instanceof.

The expression x instanceof SomeClass is false if x is null.

From the Java Language Specification, at http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.20.2

"At run time, the result of the instanceof operator is true if the value of the RelationalExpression is not null and the reference could be cast (ยง15.16) to the ReferenceType without raising a ClassCastException. Otherwise the result is false."

So if the operand is null, the result is false.

share|improve this answer
15  
This answer is more correct than try it because current behavior is not the same as guaranteed behavior. – Luke Jan 8 at 19:08
6  
This should be the accepted answer. It is far more complete. – Renato Lochetti Mar 4 at 13:05

returns false.

(It takes 1 minute to try it)

share|improve this answer
91  
It will take 2 seconds to find your answer with google :) – Johan Lübcke Jun 1 '10 at 13:56
18  
and perhaps 1 sec to get it on SO :) but still.. – Bozho Jun 1 '10 at 13:59
6  
@Bozho - and waste many hours of other peoples' time viewing the question, answering, reading the answer, posting silly comments ... :-) – Stephen C Jun 1 '10 at 14:38
9  
I agree, the poster should have just spent an extra couple minutes and found the answer on Google. But it's not a "waste of time" question -- it's a great question to have on SO, especially because you get this answer (the pragmatic one), and the next highest answer that references the language spec. Now this page is the highest-ranked Google result for the topic, and SAVES people time, in total, insofar as the amount of time "wasted" by people answering this question, posting silly comments, etc. is dwarfed by the amount of time saved by people getting a succinct answer to the question. – Dathan Nov 13 '12 at 17:51
4  
Actually what a program does (behavior) and what a program intends or guarantees to do (specification) are 2 different things. Therefore try it is not a good answer. Look it up in the java documentation would be an acceptable, yet still sarcastic answer. – Luke Jan 8 at 19:12
show 7 more comments

No its not. instanceof would return false if its null.

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.