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
