What are the differences between unchecked exception, checked exception, and errors?
Answer Posted / hr@tgksolutions.com
• An Unchecked exception inherits from RuntimeException (which extends from exception). The JVM treats RuntimeException differently as there is no requirement for the application code to deal with them explicitly.
• A checked exception inherits from the exception class. The client code has to handle the checked exceptions either in a try-catch clause or has to be thrown for the super-class to catch the same. A checked exception thrown by a lower class (sub-class) enforces a contract on the invoking class (super-class) to catch or throw it.
• Errors (members of the error family) usually appear for more serious problems, such as OutOfMemoryError (OOM), that may not be so easy to handle.
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How large is a boolean?
How do you declare an array in java?
What are the main differences between the java platform and other platforms?
What is math in java?
What type of language is java?
Where are register variables stored?
What is appletviewer?
What is passing by reference in java?
Explain with example the concept of constant variable in java.
How you can force the garbage collection?
Why is core java important?
If an application has multiple classes in it, is it okay to have a main method in more than one class?
How do you compare values in java?
Can we print null in java?
Which category the java thread do fall in?