Sep

09

// CHANGE THE SEQUENCE FINALLY THEN OBSERVE THE RESULTĀ 

class TestEx{
public static void main(String args[]){
try{
if(args.length==0){
String s=null;
System.out.println(s.length());
}
System.out.println(args[0].length());//3
int num1=Integer.parseInt(args[0]);
int num2=Integer.parseInt(args[1]);
System.out.println(num1/num2);
}
catch(Exception e){
System.out.println(e);
}
finally{
System.out.println(“finally executed”);
}
System.out.println(“exit from main”);
}
}


Leave a Reply