Setting a reference to null will not throw NPE, else think of how would you ever nullify your references?
Further, when you assign null to any reference, only that reference is detached from the object it is pointing to. But the remaining references will still be there.
For e.g: -
MyClass obj1 = new MyClass();
MyClass obj2 = obj1;
obj1 = null; // only obj1 is detached from object
System.out.println(obj2); // obj2 still points to original object
So, when you invoke your method: -
new Test().setNull();
A copy of the reference is stored in this (Java is not pass by reference, rather it passes the References by value), which is then again passed to another method, so one more copy is made, which then you set to null. But the original reference still points to that object.
NPE can only be thrown when you try to invoke any method, or access any object properties, on a null reference.
nulldoesnt cause an exception, variables can benull. Try calling a method on yourTestobject after you set it tonull, that will cause an exception. – Hunter McMillen Nov 21 '12 at 6:03this, but sincethisis a language keyword and not some weird, implicit, hidden member, you can't use it as the left side of an assignment. – jpm Nov 21 '12 at 6:06NPE. even after setting null, calling another methods of the same class will not through NPE, sincethisis notnull. please see my example. – sunil Nov 21 '12 at 6:45nullthen attempt to call a method of that class on that object, you will receive a NPE – Hunter McMillen Nov 21 '12 at 17:59printfunction after the callingsetNull()method. Please test – sunil Nov 22 '12 at 5:24