在 Ruby 中开始、拯救和确保?

Begin, Rescue and Ensure in Ruby?

提问人:Lloyd Powell 提问时间:2/3/2010 最后编辑:the Tin ManLloyd Powell 更新时间:7/28/2023 访问量:499070

问:

我最近开始用 Ruby 编程,我正在研究异常处理。

我想知道 Ruby 是否等同于 C#?我应该有:ensurefinally

file = File.open("myFile.txt", "w")

begin
  file << "#{content} \n"
rescue
  #handle the error here
ensure
  file.close unless file.nil?
end

还是我应该这样做?

#store the file
file = File.open("myFile.txt", "w")

begin
  file << "#{content} \n"
  file.close
rescue
  #handle the error here
ensure
  file.close unless file.nil?
end

即使没有引发异常,也会被调用吗?ensure

ruby-on-rails ruby 异常 错误处理

评论

2赞 Nowaker 10/5/2018
两者都不好。通常,在处理外部资源时,您始终希望资源开口位于块内。begin

答:

7赞 Milan Novota 2/3/2010 #1

是的,在任何情况下都被调用。有关更多信息,请参阅《Ruby 编程》一书的“Exceptions, Catch, and Throw”,并搜索“ensure”。ensure

15赞 Farrel 2/3/2010 #2

如果要确保文件已关闭,则应使用以下块形式:File.open

File.open("myFile.txt", "w") do |file|
  begin
    file << "#{content} \n"
  rescue
  #handle the error here
  end
end

评论

3赞 rogerdpack 2/2/2013
我想如果你不想处理错误,而只是提出它,并关闭文件句柄,你不需要在这里开始救援吗?
5赞 Chris McCauley 2/3/2010 #3

是的,就像保证区块将被执行一样。这对于确保关键资源受到保护非常有用,例如,在出错时关闭文件句柄或释放互斥锁。ensurefinally

评论

1赞 Nowaker 10/5/2018
除非是他/她的情况,否则不能保证文件被关闭,因为部分不在 begin-ensure 块内。只有,但这还不够。File.openfile.close
5赞 Aaron Qian 2/3/2010 #4

是的,确保它每次都运行,所以你不需要在块中。ensurefile.closebegin

顺便说一句,一个很好的测试方法是:

begin
  # Raise an error here
  raise "Error!!"
rescue
  #handle the error here
ensure
  p "=========inside ensure block"
end

您可以测试在出现异常时是否会打印出“=========inside ensure block”。 然后,您可以注释掉引发错误的语句,并通过查看是否有任何内容被打印出来来查看该语句是否已执行。ensure

1321赞 Jörg W Mittag 2/3/2010 #5

是,确保始终评估代码。这就是为什么它被称为 .因此,它等价于 Java 和 C# 的 .ensureensurefinally

//// 的一般流程如下所示:beginrescueelseensureend

begin
  # something which might raise an exception
rescue SomeExceptionClass => some_variable
  # code that deals with some exception
rescue SomeOtherException => some_other_variable
  # code that deals with some other exception
else
  # code that runs only if *no* exception was raised
ensure
  # ensure that this code always runs, no matter what
  # does not change the final value of the block
end

您可以省略 ,或者 。还可以省略变量,在这种情况下,您将无法在异常处理代码中检查异常。(好吧,你总是可以使用全局异常变量来访问引发的最后一个异常,但这有点麻烦。您可以省略异常类,在这种情况下,将捕获继承自的所有异常。(请注意,这并不意味着所有异常都会被捕获,因为有些例外是 .大多数情况下会损害程序完整性的非常严重的异常,例如 、 、 、 、 或 。rescueensureelseStandardErrorExceptionStandardErrorSystemStackErrorNoMemoryErrorSecurityErrorNotImplementedErrorLoadErrorSyntaxErrorScriptErrorInterruptSignalExceptionSystemExit

某些块形成隐式异常块。例如,方法定义也隐式也是异常块,因此不是写入

def foo
  begin
    # ...
  rescue
    # ...
  end
end

你只写

def foo
  # ...
rescue
  # ...
end

def foo
  # ...
ensure
  # ...
end

这同样适用于定义和定义。classmodule

但是,在您询问的特定情况下,实际上有一个更好的成语。通常,当您使用最后需要清理的某些资源时,您可以通过将块传递给为您完成所有清理的方法来实现。它类似于 C# 中的块,只是 Ruby 实际上足够强大,你不必等待 Microsoft 的大祭司从山上下来,慷慨地为你更改他们的编译器。在 Ruby 中,你可以自己实现它:using

# This is what you want to do:
File.open('myFile.txt', 'w') do |file|
  file.puts content
end

# And this is how you might implement it:
def File.open(filename, mode='r', perm=nil, opt=nil)
  yield filehandle = new(filename, mode, perm, opt)
ensure
  filehandle&.close
end

你知道什么:这在核心库中已经作为 .但它是一种通用模式,您也可以在自己的代码中使用,用于实现任何类型的资源清理(在 C# 中为类似)或事务或您可能想到的任何其他内容。File.openusing

这是唯一不起作用的情况,如果获取和释放资源分布在程序的不同部分。但是,如果它是本地化的,如您的示例所示,那么您可以轻松使用这些资源块。


顺便说一句:在现代 C# 中,实际上是多余的,因为你可以自己实现 Ruby 风格的资源块:using

class File
{
    static T open<T>(string filename, string mode, Func<File, T> block)
    {
        var handle = new File(filename, mode);
        try
        {
            return block(handle);
        }
        finally
        {
            handle.Dispose();
        }
    }
}

// Usage:

File.open("myFile.txt", "w", (file) =>
{
    file.WriteLine(contents);
});

评论

104赞 Chris 12/12/2013
请注意,尽管语句是最后执行的,但它们不是返回值。ensure
47赞 Dennis 10/17/2014
我喜欢在 SO 上看到这样的丰富贡献。它超出了 OP 的要求,因此它适用于更多的开发人员,但仍然在主题上。我从这个答案+编辑中学到了一些东西。谢谢你不只是写“是的,无论如何都会被召唤”。ensure
5赞 Teddy 1/6/2015
请注意,不能保证完成此操作。举个例子,你在线程内部有一个开始/确保/结束,然后在调用 ensure 块的第一行时调用 Thread.kill。这将导致其余的 ensure 无法执行。
7赞 Martin Konecny 5/5/2015
@Teddy:确保保证开始执行,不保证完成。您的示例是矫枉过正 - ensure 块中的简单异常也会导致它退出。
3赞 Mashmagar 8/19/2015
请注意,C# 示例并未消除对 .该方法仍然需要进行清理。该示例只是以冗长(而不是 100% 防弹)的方式执行此操作,而不是使用速记。我建议尽可能用 .usingopenusingusingtry-finally
49赞 alup 10/29/2012 #6

仅供参考,即使在该部分中重新引发异常,该块也会在代码执行继续到下一个异常处理程序之前执行。例如:rescueensure

begin
  raise "Error!!"
rescue
  puts "test1"
  raise # Reraise exception
ensure
  puts "Ensure block"
end
8赞 kuboon 1/23/2014 #7

这就是为什么我们需要:ensure

def hoge
  begin
    raise
  rescue  
    raise # raise again
  ensure  
    puts 'ensure' # will be executed
  end  
  puts 'end of func' # never be executed
end