0
class A {
    B b = new B();
    b.myMethod();
}

class B {
    public void myMethod() {
        C c = new C();
        c.errMethod();
    }
}

class C {
    public int errMethod() {
        // Some runtime Error
    }
}

中的一些运行时错误errMethod()。我的应用程序不应该关闭。我应该在这里做什么?

这是 Java 面试题之一,我们不应该使用任何异常处理技术。有没有其他方法来处理这个?

4

1 回答 1

2

在 try/catch 块中编写 errMethod 中的代码。

public int errMethod(){

   try{
    //code goes here
   }
   catch(Exception e){
    // handle exception
   }
}
于 2012-11-28T17:36:10.443 回答