FileDocCategorySizeDatePackage
InstanceofNull.javaAPI DocExample379Sun Jan 25 13:48:02 GMT 2004None

InstanceofNull.java

/** Show that "null instanceof SomeClass" returns false, not a NPE */
public class InstanceofNull {
	public static void main(String[] args) {
		try {
			boolean match = null instanceof Object;
			System.out.println("null instanceof Object == " + match);
		} catch (Throwable t) {
			System.err.println(
			"OK, I admit I was wrong, null instanceof Object throws " + t);
		}
	}
}