What is the difference between throw and throws?
Answer Posted / manish kushwaha
First of all i would say both are reserved keyword in java
In Java Exception handling we are using above keyword throw
and throws.
Difference:
throws: throws clause is always use to propagate method
level exception, when ever you will use this clause, caller
method responsibility is to handle exception trowed by the
same method.
throw: this is the clause use to throw the instance of that
exception, main use of this throw clause is in user define
exception use you have written your own exception when ever
this exception will come you will throw this exception object.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can you traverse a linked list in java?
Which list is sorted in java?
What does arrays sort do in java?
What are Normalization Rules? Define Normalization?
How many bytes is a unicode character?
What is the default value of the local variables?
What is the buffer limit?
Why do we use bufferedreader?
What's the difference between comparison done by equals method and == operator?
How many return statement are allowed in a function?
Which list does not allow duplicates in java?
What is dot operator?
Can you run java program without main method?
How do I get 64 bit java?
In the below example, what will be the output?