difference throws and throw in java
Answers were Sorted based on User's Feedback
Answer / chaitanya
throws clause is used when the programmer does not want to
handle the exception and throw it out of a method.throw
class is used when the programmer wants to throw an
exception explicitly and wants to handle it using catch
block.hence ,throws and throw are contradictory.
| Is This Answer Correct ? | 7 Yes | 0 No |
Answer / mary kamal
when exception raises if we nt handeling we just throw,and throws is used to handle the exception nt by programer,it is an indication to catch the exception who wer using that class
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / shanthini
The keyword 'throws' should be used only with the methods while the keyword 'throw'is a clause...
Throws is actually a declaration of any methods and Throw is used to handle the exceptions...
| Is This Answer Correct ? | 3 Yes | 0 No |
How many JVMs can run on a single machine and what is the Just-In-Time(JIT) compiler?
What is the difference between yielding and sleeping in java programming?
explain copyonwritearraylist and when do we use copyonwritearraylist?
What is square root in java?
What is the catch or declare rule for method declarations?
Write a program to check string is palindrome without using loop?
Explain which of the following methods releases the lock when yield(), join(),sleep(),wait(),notify(), notifyall() methods are executed?
Difference between this(), super()?
12 Answers College School Exams Tests, Oracle,
What do you mean by data type?
What is byte code and why is it important to java’s use for internet programming?
How do we make a class serialize?
Explain notifyall() method of object class ?