gpt4 book ai didi

java - 运行时错误处理

转载 作者:行者123 更新时间:2023-12-02 07:25:45 27 4
gpt4 key购买 nike

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面试问题之一,我们不应该使用任何异常处理技术。还有其他方法可以解决这个问题吗?

最佳答案

将 errMethod 中的代码写入 try/catch block 中。

public int errMethod(){

try{
//code goes here
}
catch(Exception e){
// handle exception
}
}

关于java - 运行时错误处理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13611006/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com