what is difference between checked and unchecked exception
plz explain examples ?
Answer Posted / shrikrishna kashid
Joined: Dec 13, 2007
Posts: 80
posted Friday, February 08, 2008 2:00 PM
Checked Exceptions:
A checked exception is any subclass of Exception (or
Exception itself), excluding class RuntimeException and its
subclasses.
You should compulsorily handle the checked exceptions in
your code, otherwise your code will not be compiled. i.e
you should put the code which may cause checked exception
in try block. "checked" means they will be checked at
compiletime itself.
There are two ways to handle checked exceptions. You may
declare the exception using a throws clause or you may use
the try..catch block.
The most perfect example of Checked Exceptions is
IOException which should be handled in your code
Compulsorily or else your Code will throw a Compilation
Error.
Unchecked Exceptions :
Unchecked exceptions are RuntimeException and any of its
subclasses. Class Error and its subclasses also are
unchecked.
Unchecked runtime exceptions represent conditions that,
generally speaking, reflect errors in your program's logic
and cannot be reasonably recovered from at run time.
With an unchecked exception, however, compiler doesn't
force client programmers either to catch the exception or
declare it in a throws clause.
The most Common examples are ArrayIndexOutOfBoundException,
NUllPointerException ,ClassCastException
| Is This Answer Correct ? | 19 Yes | 1 No |
Post New Answer View All Answers
am searching for the job based on java, swing, currently working small company. they are not giving any salary slip, offer letter. so if i try outside for MNC's they start with previous company details. what should i do..? please help me to get job and make my career.
What is the purpose of action interface in swing?
What are heavyweight components? What is lightweight component?
How to create a swing gui in java?
Write a program to include the internal frame in swing.
How to move from one page to another in java swing?
What is import javax swing?
What is an event in Swing?
Explain the difference between swing and jsf.
Which types of components are used in designing swing based gui?
How is multi-threading gets implemented using swing?
How to change button color in java swing?
How to render an html page using only swing.
What is the difference between applications and applets?
What are swing components in java?