Is there any possibility of exceptions to occur other than RuntimeException in Java? Thanks.
|
feedback
|
|
The java.lang package defines the following standard exception classes that are not runtime exceptions:
| ||||
feedback
|
|
Yes, there are Three kinds. Checked exceptionsThe compiler will let you know when they can possible be thrown, due to a failure in the environment most likely. They should be caught, if the program can do something with it, otherwise it is preferred to let them go. Most of them inherit from
or from
Although it is better to inherit from the former. For example:
Signals that an I/O exception of some sort has occurred. This class is the general class of exceptions produced by failed or interrupted I/O operations. ErrorsThese are special kinds of exceptions. They SHOULD NOT BE CAUGHT for when they occur means that something really really bad just happened. All of them inherit from
For example:
Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and no more memory could be made available by the garbage collector. or
Thrown when a stack overflow occurs because an application recurses too deeply. RuntimeExceptionsUsed to identify programmer failures, rather than resource failures. A Runtime exception could "normally" be avoided while coding. If you have one most likely you're doing something wrong. Sometimes runtime exceptions are caught, but, unless you know exactly what you're doing and why, catching them is a bad practice ( again, unless that's exactly what you need ) They inherit from
For example
Thrown to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array or
Thrown when an application attempts to use null in a case where an object is required About the last two, MOST of the times, they can be avoided by programming carefully and understand what the state of the program is ( does this array have 5 elements? why should I try to access -1 or 6th. Is this reference null? why should I call null.toString() ) Although I have had arguments with guys that claim that all NPE should be caught. Well what can I say. | |||||||
feedback
|
|
Basically in java (opposed to .NET) you have two types of exceptions:
May I suggest the following O'Reilly On Java Exception article. | |||||||||||
feedback
|