Exception 处理

异常在 begin/end 块中被捕获。

begin
  # code that might raise
rescue
  # handle exception
end

如果您在方法内部,则不需要使用 beginend,除非您希望限制捕获的异常的范围。

def my_method
  # ...
rescue
  # ...
end

对于 classmoduleblock 也是如此。

[0, 1, 2].map do |i|
  10 / i
rescue ZeroDivisionError
  nil
end
#=> [nil, 10, 5]

您可以使用 => variable_namerescue 行的末尾将异常分配给局部变量。

begin
  # ...
rescue => exception
  warn exception.message
  raise # re-raise the current exception
end

默认情况下,StandardError 及其子类会被捕获。您可以通过在 rescue 后列出特定的异常类(及其子类)来捕获它们。

begin
  # ...
rescue ArgumentError, NameError
  # handle ArgumentError or NameError
end

您可以以不同的方式捕获不同类型的异常。

begin
  # ...
rescue ArgumentError
  # handle ArgumentError
rescue NameError
  # handle NameError
rescue
  # handle any StandardError
end

异常从顶部开始与 rescue 部分匹配,并且只匹配一次。如果在 begin 部分引发 ArgumentError,则不会在 StandardError 部分中处理它。

您可以重试捕获的异常。

begin
  # ...
rescue
  # do something that may change the result of the begin block
  retry
end

执行将从 begin 块的开头恢复,因此请注意不要创建无限循环。

在 rescue 块内部是 retry 的唯一有效位置,所有其他用法都会引发 SyntaxError。如果您希望重试块迭代,请使用 redo。有关详细信息,请参阅控制表达式

要始终运行一些代码,无论是否引发了异常,请使用 ensure

begin
  # ...
rescue
  # ...
ensure
  # this always runs BUT does not implicitly return the last evaluated statement.
end

您也可以在没有引发异常时运行一些代码。

begin
  # ...
rescue
  # ...
else
  # this runs only when no exception was raised AND return the last evaluated statement
ensure
  # this always runs.
  # It is evaluated after the evaluation of either the `rescue` or the `else` block.
  # It will not return implicitly.
end

注意:在 `ensure` 块中没有显式的 `return` 的情况下,`begin`/`end` 块将返回进入 `ensure` 块之前的最后评估的语句。