| Author |
instanceof
|
adam Lui
Ranch Hand
Joined: Sep 03, 2007
Posts: 186
|
|
It compiles fine but there is no output. I expected at least "inside int test". I am passing an int[] array into the method, checking if it is an instance of int[], and was pretty sure it will be true. what is the problem here?!
|
boolean b = true;<br />System.out.println ("I believe in Java.<br />Java will make my dream come " + b);
|
 |
Kelvin Chenhao Lim
Ranch Hand
Joined: Oct 20, 2007
Posts: 513
|
|
|
Although null is a valid value for any reference variable, it is not an instance of any type. In other words, Java defines "null instanceof Type" to always be false, for any class or interface Type.
|
SCJP 5.0
|
 |
 |
|
|
subject: instanceof
|
|
|