Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   Java (http://siteownersforums.com/forumdisplay.php?f=12)
-   -   What is difference between throw and throws? (http://siteownersforums.com/showthread.php?t=348778)

Pavan Techn 05-29-2018 08:44 AM

What is difference between throw and throws?
 
throw keyword throws keyword
1)throw is used to explicitly throw an exception. throws is used to declare an exception.
2)checked exceptions can not be propagated with throw only. checked exception can be propagated with throws.
3)throw is followed by an instance. throws is followed by class.
4)throw is used within the method. throws is used with the method signature.
5)You cannot throw multiple exception You can declare multiple exception e.g. public void method()throws IOException,SQLException.


All times are GMT -7. The time now is 05:52 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.