A Java “instanceof null” example
By Alvin Alexander. Last updated: September 20 2019
You might think that when the Java instanceof
operator is used to test a null
reference, such as a null
reference to a String, instanceof
would realize that even though the reference is currently null
, it is a reference to a String
, so you might expect instanceof
to return true
... but it doesn't.