how to catch nullpointerexception code example
Example 1: NullPointerException
TestObject a = new TestObject();String b = a.getTestResult();b.toString();
Example 2: nullpointerexception
public class MyClass{
private Object iAmNull;//This is null by default
private Object iAmInitialized=new Object();
public void test(){
System.out.println(iAmInitialized.toString());//prints that object
System.out.println(iAmNull.toString());//throws a NullPointerException
}
}