码迷,mamicode.com
首页 > 其他好文 > 详细

Ruby的异常处理

时间:2016-09-22 01:21:07      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

Ruby的异常处理

如果异常处理范围是整个方法体,可以省略begin和end,直接写rescure和ensure部分的程序,不过要写在最后,避免后面的方法体内容被跳过。

def foo
    方法体
rescure => ex
    异常处理
ensure
    后处理
end

范例:


begin
input = File.open("liuyang.txt")
input.each do |line|
printf("%s,%d", line, line.size)
end
input.close
a =1
printf("\n%d\n", a)
rescue => ex
puts "**************"
puts ex.message #message : 异常信息
puts ex.backtrace #backtrace / $@ : 异常的位置信息
sleep(3)
retry #使用retry后,begin一下的处理会再重新做一遍
ensure
puts "no matter what happened , execute" #不管是否发生异常,这需要执行
end
 

 

Ruby的异常处理

标签:

原文地址:http://www.cnblogs.com/liuyang92/p/5894701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!