deffernce between checked and unchecked exception in java

deffernce between checked and unchecked exception in java

What is deffernce between checked and unchecked exception in java please explain by example

View Answers

July 22, 2011 at 12:40 PM

Differences:

1)These are the exceptions which occur during the compile time of the program whereas Unchecked exceptions are the exceptions which occur during the run time of the program.

2)Checked exceptions must be explicitly caught or propagated as described in Basic try-catch-finally Exception Handling. Unchecked exceptions do not have this requirement. They don't have to be caught or declared thrown.

For more information, please go through the following link:

Checked and Unchecked Exceptions


September 15, 2012 at 12:08 AM

I strongly disagree. All exceptions occur at run time only.

The actual difference is a bit complicated.

Checked exceptions are the exceptions which are well known and likely to occur in some circumstance when the programmer uses some methods of the Java API. In such scenarios, the programmer must declare that his code can throw a checked exception at run time. This declaration is a compile - time check made by the java compiler for surity on java's robustness. If you are using methods which are likely to throw some checked Exception as specified in their throws clause, you must either handle them or specify in throws.

Specifying a throws is actually showing the compiler your awareness of the possibility that your method may throw an exception. At the same time, invokers of your method will find it easy to anticipate what all they need to handle as you are not handling but specifying in throws.

Thus we need to specify throws statement if we do not handle a checked exception.

However Runtime exceptions (Unchecked Exceptions) can occur any time and are actually coding bugs so should actually not be handled using catch block instead should be handled by writing bug-free code.

This can be a very harsh statement but still I stand to it:

"Runtime Exceptions should not be handled".

Instead they should be eradicated from code by changing code appropriately.









Related Tutorials/Questions & Answers:
deffernce between checked and unchecked exception in java
deffernce between checked and unchecked exception in java  What is deffernce between checked and unchecked exception in java please explain by example
unchecked exception
unchecked exception  What happens if the service method throws an unchecked Exception
Advertisements
checked and uncheked exception
checked and uncheked exception  please give some information about checked and unchecked exception
Java exception
Java exception  What is the difference between Checked and Unchecked exception
Question on Checked Exception
Question on Checked Exception   why checked exception force to put try and catch block ? Please send me answer
Jsp-delete checked checkboxes and display UNCHECKED checkboxes in table as well as in store that unchecked checkboxes in ARRAYLIST
Jsp-delete checked checkboxes and display UNCHECKED checkboxes in table as well as in store that unchecked checkboxes in ARRAYLIST  I have a table... in ARRAYLIST. I want to delete checked checkboxes.And store all unchecked checkboxes
exception
exception  chek in and check out exception in java   Please visit the following link: Checked and Unchecked Exception
Difference between error and exception ????????
Difference between error and exception ?  Can we handle a error in java if yes than give an code of an example? Difference between error and exception handling.......   Exceptions are things you can create/throw
Java Exception - Java Beginners
we are comeing to checked/unchecked exception here we findout main use for throw/throws. when we raise the checked exception using throw here before raising... is checked exception,here we can not stmt "throws IlligalArgumentException
Making Exceptions Unchecked - java tutorial,java tutorials
Checked and Unchecked Exception In this section, you will learn Checked and Unchecked Exceptions in java and how to handle it. The Exception is a condition... below types of built-in exception in java : 1. Unchecked ExceptionADS
Java Exception
Java Exception  Explain about checked and unchecked Exceptions with Examples?   Checked Exceptions - These are the exceptions which occur... that whether the program contains handlers for checked exceptions
Exception handling in java
and catch() block. We are handle of exception checked and unchecked exception... operator. There are two types of exception:- Checked Exception. Unchecked...Exception handling in java We are going to discus about Exception handling
Java exception
Java exception  What is the difference between exception and error
Difference between throw and throws in java.
Difference between throw and throws in java. Throws and throw both are keywords in java, used for handling the exception.  When a method is not able to handle the checked exception, it should declared with throws keyword
Java Exception
Java Exception  Why Runtime Exceptions are Not Checked
Java Exception
Java Exception  Why Errors are Not Checked
List of Java Exception
List of Java Exception       Exception in Java are classified on the basis of  the exception handled by the java compiler. Java consists of the following type of built
List of Java Exception
List of Java Exception     ...; the exception handled by the java compiler. Java consists of the following type... and problem in database.java.io.IOException is a checked exception
Java exception handling
Java exception handling  What is the difference between throw and throws keywords
Error and Exception in Java - Java Beginners
| | RuntimeExce(Unchecked) Checked(IoExce...Error and Exception in Java  Hi, What is the base class for Error and Exception? Thanks   hello. Throwable is the super class
exception
user defined unchecked exception  can we create user defined unchecked exceptions? if so what is the exact use of it in real time?   Please visit the following links: http://www.roseindia.net/java/java-exception/user
java Exception handling - Java Beginners
java Exception handling  what is the difference between throw... an exception manually where as throws is used in the case of checked exceptions to re-intimate the compiler that we have handled the exception. For more information
exception
exception  wHEN RUNTIME EXCEPTION CLASS IS SUB OF EXCEPTION CLASS HOW CAN'T HANDLE UNCHECKED EXCEPTION
Exception Java
Exception Java  Hi, What are the Exception Java? Thanks   Hi, Read it at Java Exception. Thanks
Java exception
Java exception  What happens if an exception is not caught
Java exception
Java exception  Can an exception be rethrown
Java Exception
Java Exception  Which is superclass of Exception
java exception
java exception   define an exception called no match exception tat z... { public static void main(String[] args) throws Exception { String z="Hello"; if(!z.equals("India")){ throw new Exception
Java sql Exception
Java sql Exception  difference between sql exception class and sql warning class
java Exception handling - Java Beginners
java Exception handling  what is the difference between throw and throws keywords
Java Illegal State Exception
of exception. while some other classes are checked. Java Illegal State Exception is unchecked exception which provides you the information of  illegal state... Java Illegal State Exception   
exception in java - Java Beginners
exception in java  exception in java
Double-checked locking,java tutorials,java tutorial
Double-checked Locking Lets us have a look of Singleton pattern, In Singleton pattern we used some type of synchronization in java, so that only only one... into the synchronized block get create an instance, remember it is not checked at that time
exception in java
exception in java  StringIndexOutOfBounds Exception in flames program   Hi Friend, We have providing you a program. Try it:ADS_TO_REPLACE_1 import java.util.*; public class FlamesProgram{ static String name1
Java Stream Write Exception
) { System.out.println("Server Exception :: "+e); } I also checked...Java Stream Write Exception  I am doing socket programming. I have...(Exception e) { System.out.println("Exception :: "+e); } When the line
Java Exception
Java Exception  What are monitors
Exception Handling - Java Beginners
Exception Handling  hi,can u pls make me understand d clear cut difference between throw n throws keyword... n how can we make our own exception..i... want to force an exception then we use throw keyword. the throw keyword is used
Java Exception
Java Exception  What are Chained Exceptions
Java exception
Java exception  What is NullPointerException and how to handle
Java exception
Java exception  Can try statements be nested
Java Exception
Java Exception  What is the purpose of finalization
Java Exception
Java Exception  What is ?Resource leak
Java Exception
Java Exception  Can a catch block exist without a try block
Java Exception
Java Exception  If I write System.exit (0); at the end of the try block, will the finally block still execute
Core Java Exceptions - Java Beginners
Core Java Exceptions  HI........ This is sridhar .. Exceptions r checked exception and unchecked exception ........? Checked exceptions r at compile time and Unchecked exceptions r runtime? but Exception is Runtime
Index Out of Bound Exception
Index Out of Bound Exception       Index Out of Bound Exception  are the Unchecked Exception that occurs at run-time errors. This arises because of  invalid
What Is an Exception
Exception in Java      ... language. Occurrence of any kind of exception in java applications may result... exception handling mechanism. The Java programming language uses Exception
Java exception handling
Java exception handling  what are the constraints imposed by overriding on exception handling
exception
defined checked exception ââ?¬Å?InvalidCharcterFoundExceptionââ?¬Â? and creater a block of codes that will handle the exception
Exception - Java Beginners
://www.roseindia.net/java/java-exception/index.shtml Thanks... are receiving an age of person,JOpiton class is used.age is not between 20 to 50 (inclusive), you want to throw your own exception. This means you will have

Ads