我们什么时候应该在方法中抛出异常或捕获异常?

When should we throw exceptions, or catch exceptions, in a method?

我一直在阅读更多关于异常的内容,但我不确定在什么情况下我们应该抛出一个方法

public void fxml() throws IOException
{
     // method body here
}

或者在方法中捕获异常

public void fxml()
{
          FXMLLoader fxmlLoader = new FXMLLoader(getClass().getResource("fxml.fxml"));

            try
            {
                fxmlLoader.load();
            } 
            catch (IOException exception) 
            {
                throw new RuntimeException(exception);
            } 
}

从 Oracle 的示例中可以看出

Sometimes, it's appropriate for code to catch exceptions that can occur within it. In other cases, however, it's better to let a method further up the call stack handle the exception. For example, if you were providing the ListOfNumbers class as part of a package of classes, you probably couldn't anticipate the needs of all the users of your package. In this case, it's better to not catch the exception and to allow a method further up the call stack to handle it.

https://docs.oracle.com/javase/tutorial/essential/exceptions/declaring.html

所以我很好奇这是不是说我们可能不需要 class/method 并且通过在这个方法中执行 try/catch 如果我们不使用它就没有用它,所以我们 "throw it" 以备后用?

好像类自己也是"throw exceptions"为了以后用得着……难道只是层层递进,直到最后全部用完?在上面的教程中,几章之后是一个名为 "Chained Exceptions" 的章节,这实际上是 throws 方法发生了什么以供稍后使用吗?

我也看了这个帖子When to use throws in a Java method declaration?

但我发现它没有完全解释我想知道的东西,但是我发现了这个兴趣

If you are catching an exception type, you do not need to throw it, unless you are going to rethrow it. In the example you post, the developer should have done one or another, not both.

Typically, if you are not going to do anything with the exception, you should not catch it.

The most dangerous thing you can do is catch an exception and not do anything with it.

我不太确定他所说的 "rethrowing" 是什么意思,除非他说的是抛出该方法并稍后捕获它?

然后他说如果你不打算使用它,就不要做任何有例外的事情,所以似乎最好把它扔掉以备后用,以防我们需要它?

然后说危险?这是为什么?

所以基本上如果我们不知道我们是否要使用它,那么我们应该抛出它以便调用方法本身,或者如果我们知道它会被调用,无论如何,然后我们应该做一个 try/catch 块?

我还注意到我的示例还抛出了一个基于 IOException 的 RuntimeException。因此,从某种意义上说,您可以采用我们抛出的第一个方法,无论异常如何,然后将其抛入 try OR catch 块中?似乎 catch 块更适合 "RuntimeException" 或其他系统异常之一,但也许还有其他用例?

想法?

感谢您的帮助!

如果您的代码无法完成其工作(也称为 "fulfilling its contract"),您将抛出异常。发生这种情况的原因可能是调用者向您传递了无效输入,或者某些外部资源出现故障(例如网络连接丢失)。

当下游存在您可以以某种方式处理的预期问题时捕获异常。例如,您可能会捕获指示网络问题的异常并重试该操作几次,或者您可能会向用户显示一条错误消息并询问下一步该怎么做。

如果下游代码可能会抛出异常,但您的代码处于中间位置并且不知道该怎么做,只需让异常向上传递到调用代码即可。