2012年12月13日

摘要: 一、 关于Java异常捕获的一点笔记:先看代码: 1 import java.io.FileNotFoundException; 2 public class ExceptionTest 3 { 4 5 int f1() throws FileNotFoundException{ 6 System.out.println("f1 Executed!"); 7 throw new FileNotFoundException("aaa"); 8 } 9 int f2(){10 System.out.prin... 阅读全文
posted @ 2012-12-13 13:44 大油蛙 阅读(188) 评论(0) 推荐(0) 编辑

导航