trycatchfinally与return的执行顺序
百度广告
import java.io.*;
public static void main(String argv){
System.out.println(m.amethod());
public int amethod(){
FileInputStream dis =new FileInputStream("Hello.txt"); //1,抛出异常
System.out.println("No such file found"); //2.catch捕获异常,并执行
}finally{
}
}
运行结果:
public static void main(String argv){
System.out.println(m.amethod());
public int amethod(){
FileInputStream dis =new FileInputStream("Hello.txt"); //1,抛出异常
System.out.println("No such file found"); //2.catch捕获异常,并执行
}finally{
}
}
运行结果:
C:"java>java Mine
Doing finally
编辑推荐:
下载Word文档
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>