Home Help Java N Java NullPointerException



Java NullPointerException
Posted on: November 16, 2009 at 12:00 AM
NullPointerException is a kind of unchecked exception that occurs when an application attempts to use null in a case where an object is required.

Java NullPointerException

     

NullPointerException is a kind of unchecked exception that occurs when an application attempts to use null in a case where an object is required. It is also known as runtime time exception, which occurs while running a program. This type of exception is internal to the application and extends the java.lang.RuntimeException that is inherited from java.lang.Exception class.

NullPointerException must bethrown when an application attempts to use null in a case where an object is required. These include:

  • Calling the instance method of a null object.
  • Accessing or modifying the field of a null object.
  • Taking the length of null as if it were an array.

Read more at:

http:/www.roseindia.net/java/exceptions/exception.shtml

 

Related Tags for Java NullPointerException:


More Tutorials from this section

Ask Questions?    Discuss: Java NullPointerException  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.