A check to see that an object has been instantiated.
A check to see that an object has been instantiated.
Typically, in a OO programming language, this is to see whether an object has been created or not.
e.g (Java example)
public void doStuff(Object obj) {
if (obj != null) {
// Do stuff with the object
}
}