| Author |
Exception Handling
|
Arun Pai
Ranch Hand
Joined: Mar 11, 2002
Posts: 143
|
|
public class TestClass3 { public static void main(String args[]) { int k = 0; try{ int i = 5/k; } catch (ArithmeticException e){ System.out.println("1"); //return; } catch (RuntimeException e){ System.out.println("2"); return ; } catch (Exception e){ System.out.println("3"); } finally{ System.out.println("4"); } System.out.println("5"); } } The output is 145, but if return is uncommented in catch the output is 14. can anyone explain the difference in output if Try/Catch returns. -Arun
|
 |
Anthony Villanueva
Ranch Hand
Joined: Mar 22, 2002
Posts: 1055
|
|
I've tried answering that question in this thread. -anthony
|
 |
Arun Pai
Ranch Hand
Joined: Mar 11, 2002
Posts: 143
|
|
Thanks Anthony. -Arun
|
 |
 |
|
|
subject: Exception Handling
|
|
|