java.lang.nullpointerexception error code example
Example 1: nullpointerexception java
Integer num;
num = new Integer(10);
Example 2: NullPointerException
TestObject a = new TestObject();String b = a.getTestResult();b.toString();
Example 3: nullpointerexception java
int x;
x = 10;