difference throws and throw in java

Answers were Sorted based on User's Feedback



difference throws and throw in java ..

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

difference throws and throw in java ..

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

difference throws and throw in java ..

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

Post New Answer

More Core Java Interview Questions

What is java string pool?

0 Answers  


How to add menushortcut to menu item?

0 Answers  


Why constructor has no return type?

0 Answers  


What is java volatile?

0 Answers  


What does arrays sort do in java?

0 Answers  






Program to print 1 1 2 1 2 3 1 2 3 4 like that

8 Answers   Huawei,


how to use crystal reports in java

2 Answers  


Describe OOP in java?

2 Answers   Syntel,


Can you have an inner class inside a method and what variables can you access?

2 Answers  


Will set allow duplicates in java?

0 Answers  


What is a default method?

0 Answers  


Why stringbuilder is not thread safe?

0 Answers  


Categories