Friday 3 May 2013

Difference between throw and throws in Exception handling - Java Example

Difference between throw and throws keyword on Exception handling in Java is a popular core java interview question. Exception handling being an important part of Java programming language, complete knowledge of all keywords related to exception handling e.g. try, catch, finally, throw and throws is important. Main difference between throw and throws is in there usage and functionality. where throws is used in method signature to declare Exception possibly thrown by any method, throw is actually used to throw Exception in Java code, here is an example of both throw and throws keyword which makes it easy to understand difference between them.

 public void shutdown() throws IOException{
        throw new IOException("Unable to shutdown");

Difference between throw and throws in Exception handling in Javaif you see the code above, throws keyword is used to declare Exception thrown by this method shutdwon(), by looking at method signature we know that its throwing IOException. while inside method code throw keyword is actually used to throw instance of IOException. here are couple of more differences between throw and throws keyword in java:

Difference between throw and throws in Exception handling - Java Example

1) You can declare multiple exception thrown by method in throws keyword by separating them in common e.g. throws IOException, ArrayIndexBoundException etc, while you can only throw one instance of exception using throw keyword e.g. throw new IOException("not able to open connection").
2) throws keyword gives a method flexibility of throwing an Exception rather than handling it. with throws keyword in method

signature a method suggesting its caller to prepare for Exception declared in throws clause, specially in case of checked Exception and provide sufficient handling of them. On the other hand throw keyword transfer control of execution to caller by throwing an instance of Exception. throw keyword can also be used in place of return as shown in below example:

 private static boolean shutdown() {
        throw new UnsupportedOperationException("Not yet implemented");

as in below method shutdown should return boolean but having throw in place compiler understand that this method will always throw exception .
3) throws keyword cannot be used anywhere exception method signature while throw keyword can be used inside method or static initializer block provided sufficient exception handling as shown in example.

        try {
            throw new Exception("Not able to initialized");
        } catch (Exception ex) {
            Logger.getLogger(ExceptionTest.class.getName()).log(Level.SEVERE, null, ex);
        }

worth remembering is that static initalizer block should complete normally.

4) throw keyword can also be used to break a switch statement without using break keyword as shown in below example:

            case 1:
                throw new RuntimeException("Exception number 1");
            case 2:
                throw new RuntimeException("Exception number 2");
        }

We have seen differences between throw and throws in Java and they should be used accordingly. Let me know if you come across any other difference on throw vs throws in java.
Other Java Tutorials you may like

How to Convert Map into List in Java

Difference between Thread and Runnable in Java

How to parse XML Files in Java using DOM parser

How to use Factory Design pattern in Java

How to find current Date in Java with Example

How SubString works in Java

Quick tip to Convert Enum to String in Java

Difference between ArrayList and LinkedList in Java

Please share with your friends if like this article

No comments:

Post a Comment