0

我有一个设置,例如...

public class MyClass {
   Exception e = null;   

   try {
      Game.runItNow();
   } catch (Exception e) {
      this.e = e;
   }

   if (this.e == null) {
      showError();
   }
}

public class Game {
    public static void runItNow() throws IOException {
       try {
          HttpManager.getData()
       } catch(IOException e) {
          // here, e = null
          throw e;
       }
    }
}

public class HttpManager {    

    public static String getData() throws IOException {
       String someData = "The fox is brown";
       String someWord = "fox";

       if (someData.contains(someWord)) {
          throw new IOException();
       }

       return someData;
    }
}

问题是,当我捕捉到 IO 异常时e == null...... 不确定我是否有脑放屁,但我很困惑。为什么是e == null?我正在抛出它的一个新实例。

4

2 回答 2

0

如果您上面的代码是您实际拥有的代码,那么它不起作用也就不足为奇了。你MyClass不是一个合适的班级。您需要静态块、主要方法或包含该代码的构造函数。

如果您使用该代码或 main 方法创建一个构造函数,那么它将正常工作。

public class MyClass {

   public static void main(String[] args) {
       Exception e = null;   

       try {
          Game.runItNow();
       } catch (Exception e) {
          this.e = e;
       }

       if (this.e == null) {
          showError();
       }
   }
}
于 2012-07-10T19:21:18.617 回答
-1

您正在覆盖使用新 IOException 生成的 IOException 而没有异常。

于 2012-07-10T19:01:16.140 回答