Will null instanceof SomeClass return false or throw a NullPointerException
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.
|
|
No, a null check is not needed before using instanceof. The expression From the Java Language Specification, at http://docs.oracle.com/javase/specs/jls/se7/html/jls-15.html#jls-15.20.2
So if the operand is null, the result is false. |
|||||||||
|
|
returns (It takes 1 minute to try it) |
|||||||||||||||||||||
|