gpt4 book ai didi

java - 执行 RuntimeExceptions 的抛出声明

转载 作者:行者123 更新时间:2023-11-30 07:18:33 25 4
gpt4 key购买 nike

假设我有一个方法或构造函数在内部使用另一个声明可以抛出 RuntimeException 的方法或构造函数。

// Example:
public MyClass(Object arg) {
setVar(arg);
// Not responsible for dealing with the exception
}

public void setVar(Object arg) throws MyRuntimeException {
if(!isValidArg(arg))
throw new MyRuntimeException("Got you, evil argument!");
// Do something
}

在这种情况下,如果未满足必要的先决条件,则会抛出 RuntimeException。

问:包装方法/构造函数是否应该声明相同的异常,如果它的参数可能导致抛出异常?

最佳答案

这真的取决于代码所在的上下文。如果你想做一些自包含的东西,比如库,你可能想在类中捕获异常,只是为了让你的代码更干净.

但是,如果您将代码作为项目的一部分,那么我会像您所说的那样“携带抛出异常”,直到它在语义上没有意义为止。

关于java - 执行 RuntimeExceptions 的抛出声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15294149/

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