Ruby 简明教程

Ruby - Exceptions

执行和异常总是同时发生。如果您打开一个不存在的文件,则如果没有正确处理此情况,那么您的程序将被认为质量很差。

如果出现异常,程序将停止。因此,异常被用于处理执行程序期间可能发生的各种错误,并采取适当操作,而不是完全停止程序。

Ruby 提供了一个很好的机制来处理异常。我们将可能引发异常的代码放在一个 begin/end 块中,并使用 rescue 子句告诉 Ruby 我们想要处理的异常类型。

Syntax

begin
# -
rescue OneTypeOfException
# -
rescue AnotherTypeOfException
# -
else
# Other exceptions
ensure
# Always will be executed
end

从 begin 到 rescue 的所有内容都受到保护。如果在此代码块执行期间发生异常,控制将传递到 rescue 和 end 之间的块。

对于 begin 块中的每个 rescue 子句,Ruby 将引发的异常与每个参数逐个进行比较。如果 rescue 子句中命名的异常与当前抛出异常的类型相同,或者该异常的超类匹配,则匹配将成功。

万一异常与任何指定的错误类型都不匹配,我们可以在所有 rescue 子句之后使用一个 else 子句。

Example

#!/usr/bin/ruby

begin
   file = open("/unexistant_file")
   if file
      puts "File opened successfully"
   end
rescue
      file = STDIN
end
print file, "==", STDIN, "\n"

这将生成以下结果。您可以看到 STDIN 被替换为 file,因为 open 失败。

#<IO:0xb7d16f84>==#<IO:0xb7d16f84>

Using retry Statement

您可以使用 rescue 块捕获异常,然后使用 retry 语句从头开始执行 begin 块。

Syntax

begin
   # Exceptions raised by this code will
   # be caught by the following rescue clause
rescue
   # This block will capture all types of exceptions
   retry  # This will move control to the beginning of begin
end

Example

#!/usr/bin/ruby

begin
   file = open("/unexistant_file")
   if file
      puts "File opened successfully"
   end
rescue
   fname = "existant_file"
   retry
end

以下是流程 −

  1. 异常发生在 open。

  2. 转到 rescue。fname 被重新分配。

  3. 通过 retry 转到 begin 的开头。

  4. 这一次成功打开了文件。

  5. Continued the essential process.

NOTE − 请注意,如果重新替换的文件不存在,此示例代码会无限次重试。如果您对异常过程使用 retry,请小心。

Using raise Statement

您可以使用 raise 语句引发异常。以下方法在每次调用时都会引发异常。它会打印其第二个消息。

Syntax

raise

OR

raise "Error Message"

OR

raise ExceptionType, "Error Message"

OR

raise ExceptionType, "Error Message" condition

第一种形式只重新引发当前异常(如果不存在当前异常,则重新引发 RuntimeError)。这用于需要在传递异常之前拦截异常的异常处理程序中。

第二种形式创建一个新的 RuntimeError 异常,将其消息设置为给定的字符串。然后在调用堆栈中引发此异常。

第三种形式使用第一个参数创建一个异常,然后将关联消息设置为第二个参数。

第四种形式类似于第三种形式,但您可以添加任何条件语句(如 unless)以引发异常。

Example

#!/usr/bin/ruby

begin
   puts 'I am before the raise.'
   raise 'An error has occurred.'
   puts 'I am after the raise.'
rescue
   puts 'I am rescued.'
end
puts 'I am after the begin block.'

这会产生以下结果 −

I am before the raise.
I am rescued.
I am after the begin block.

另一个展示 raise 用法的示例 −

#!/usr/bin/ruby

begin
   raise 'A test exception.'
rescue Exception => e
   puts e.message
   puts e.backtrace.inspect
end

这会产生以下结果 −

A test exception.
["main.rb:4"]

Using ensure Statement

有时候,你需要保证在代码块结束时完成一些处理,无论是否引发异常。例如,你可能在进入该代码块时打开了文件,你需要确保在该块退出时将其关闭。

ensure 子句就是用来这么做的。ensure 位于最后一个 rescue 子句之后,并且包含一个将在块终止时始终执行的代码块。无论该块正常退出,是引发和捕获了一个异常,还是被未捕获的异常终止,ensure 块都将被运行。

Syntax

begin
   #.. process
   #..raise exception
rescue
   #.. handle error
ensure
   #.. finally ensure execution
   #.. This will always execute.
end

Example

begin
   raise 'A test exception.'
rescue Exception => e
   puts e.message
   puts e.backtrace.inspect
ensure
   puts "Ensuring execution"
end

这会产生以下结果 −

A test exception.
["main.rb:4"]
Ensuring execution

Using else Statement

如果存在 else 子句,则它位于 rescue 子句之后、任何 ensure 之前。

else 子句的主体只在代码主体没有引发任何异常时执行。

Syntax

begin
   #.. process
   #..raise exception
rescue
   # .. handle error
else
   #.. executes if there is no exception
ensure
   #.. finally ensure execution
   #.. This will always execute.
end

Example

begin
   # raise 'A test exception.'
   puts "I'm not raising exception"
rescue Exception => e
   puts e.message
   puts e.backtrace.inspect
else
   puts "Congratulations-- no errors!"
ensure
   puts "Ensuring execution"
end

这会产生以下结果 −

I'm not raising exception
Congratulations-- no errors!
Ensuring execution

引发的错误消息可以用 $! 变量捕获。

Catch and Throw

虽然 raise 和 rescue 的异常机制非常适合在出现问题时放弃执行,但在正常处理过程中有时也可以从一些深度嵌套的构造中跳出。这就是 catch 和 throw 派上用场的时候。

catch 定义了一个用给定名称(可以是符号或字符串)标记的块。该块被正常执行,直到遇到 throw。

Syntax

throw :lablename
#.. this will not be executed
catch :lablename do
#.. matching catch will be executed after a throw is encountered.
end

OR

throw :lablename condition
#.. this will not be executed
catch :lablename do
#.. matching catch will be executed after a throw is encountered.
end

Example

以下示例在一个请求中输入了“!”来使用 throw 终止与用户的交互。

def promptAndGet(prompt)
   print prompt
   res = readline.chomp
   throw :quitRequested if res == "!"
   return res
end

catch :quitRequested do
   name = promptAndGet("Name: ")
   age = promptAndGet("Age: ")
   sex = promptAndGet("Sex: ")
   # ..
   # process information
end
promptAndGet("Name:")

你应该在你的机器上尝试上述程序,因为它需要手动交互。这将产生以下结果 −

Name: Ruby on Rails
Age: 3
Sex: !
Name:Just Ruby

Class Exception

Ruby 的标准类和模块会引发异常。所有的异常类都形成一个层次结构,其中类 Exception 位于顶部。下一级包含七种不同的类型 −

  1. Interrupt

  2. NoMemoryError

  3. SignalException

  4. ScriptError

  5. StandardError

  6. SystemExit

在此级别还有另一个异常 Fatal ,但 Ruby 解释器仅在内部使用它。

ScriptError 和 StandardError 都有许多子类,但我们不必在这里深入细节。重要的是,如果我们创建自己的异常类,它们需要是类 Exception 或其子代的子类。

我们来看一个示例 −

class FileSaveError < StandardError
   attr_reader :reason
   def initialize(reason)
      @reason = reason
   end
end

现在,看一看下面的示例,它将使用此异常 −

File.open(path, "w") do |file|
begin
   # Write out the data ...
rescue
   # Something went wrong!
   raise FileSaveError.new($!)
end
end

此处的重要行是 raise FileSaveError.new($!)。我们调用 raise 来发出异常已发生信号,向其传递 FileSaveError 的一个新实例,原因是该特定异常导致数据的写入失败。