Java nul

Primitive types: int, double, boolean, etc.
	// can't be "null"

Object types: String, other Classes
	// can be "null", if no value was given.

String a;			// a = null
String b = null;	// b = null
PutinsRightNut