码迷,mamicode.com
首页 > 编程语言 > 详细

java 丢失的异常

时间:2018-06-16 22:35:27      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:span   替代   turn   color   try   xtend   via   thinking   message   

采用finally从句中的,可能会丢失异常

package thinking;
//: LostMessage.java
// How an exception can be lost
class VeryImportantException extends Exception {
    public String toString() {
       return "A very important exception!";
    }
}
class HoHumException extends Exception {
   public String toString() {
      return "A trivial exception";
   }
}
public class LostMessage {
    void f() throws VeryImportantException {
       throw new VeryImportantException();
    }
    
    void dispose() throws HoHumException {throw new HoHumException();}
    public static void main(String[] args) throws Exception {
    LostMessage lm = new LostMessage();
    try {
       lm.f();
    } finally {
       lm.dispose();
    }
}

} ///:~
  

VeryImportantException 被finally从句中的HoHumException的异常替代了,即出错信息丢失了。

java 丢失的异常

标签:span   替代   turn   color   try   xtend   via   thinking   message   

原文地址:https://www.cnblogs.com/newlangwen/p/9191454.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!