hi folks, could you please explain me what's the difference between throw and throws? what is a particular situation that each one these is used? thanks.
Maulin Vasavada
Ranch Hand
Joined: Nov 04, 2001
Posts: 1865
posted
0
hi throw is a "verb" meaning it will throw the specified exception when the code is executed. throws is just a declaration that says "the code might throw the specified exception at runtime". now, usage of throw would be, if you have a class that does division of two integer numbers then in your code you can write like, public double divide(int i,int j) throws DivideByZeroException { if ( j == 0 ) throw DivideByZeroException("You should better practice math"); return i/j; } here, throw will actually throw the exception when j==0 as we should not try to divide by zero. BUT the throws will declare the method as "it can throw the exception" so the using class knows what can go wrong while using the divide() method. regards maulin