throw new NullPointerException();
try{
throw new ClassCastException();
}catch(Exception e){
System.out.println("类型转换出错");
}
4
//n=1
main 1
ma1
mb1
Catch EOFException
In finally
main2
//n=2,n=4
main 1
ma1
mb1
Catch Exception
In finally
main2
//n=3
main 1
ma1
mb1
Catch SQLException
In finally
main2
//n=5
main 1
ma1
mb1
mb2
ma2
In finally
main2