考虑这个开始抢救 – 确保块:
attempts=0 begin make_service_call() rescue Exception retry unless attempts>2 exit -1 ensure attemps += 1 end
如果您运行该代码,它会引发异常,因为没有名为’make_service_call()’的函数.所以,它重试.但是它将被困在无限循环中,因为控制不会因为“重试”而“保证”.不应该’确保’部分的块确保其中的代码被执行无论在“开始”或“救援”发生什么?
当然,我可以在“开始”中增加计数 – 这不是重点.我只是提出一个关于“确定”的问题来澄清.
解决方法
确保部分在离开begin语句(以任何方式)执行时,但是当您重试时,您只是在语句内移动,以便确保部分不会被执行.
尝试此版本的示例来更好地了解发生了什么:
attempts = 0 begin make_service_call() rescue Exception attempts += 1 retry unless attempts > 2 exit -1 ensure puts "ensure! #{attempts}" end