11 2011 档案
学习Exception后总结
摘要:刚看了thinking in Java 的违例这章,这章算比较简单的,做一下总结。关键字:try catch finally throw throws有关类:Throwable Exception RuntimeException Error参考代码:public class ExceptionMethods {public static void main(String[] args) {try {throw new Exception("here is my Exception");} catch (Exception e) {System.out.println(&q 阅读全文
posted @ 2011-11-22 16:35 边缘人物 阅读(426) 评论(0) 推荐(1)