abort的使用_Ruby_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > Ruby > abort的使用

abort的使用

 2011/9/23 8:28:55  jsntghf  http://2015.iteye.com  我要评论(0)
  • 摘要:很多人可能会这样用:defstop_error(message)puts"ERROR:#{message}"exit(1)endstop_error"filedoesn'texist!"unlessFile.exist?(file)其实,ruby已经为我们内置了一个abort方法。abort"filedoesn'texist!"unlessFile.exist?(file)
  • 标签:使用

很多人可能会这样用:

?

def stop_error(message)
  puts "ERROR: #{message}"
  exit(1)
end

stop_error "file doesn't exist!" unless File.exist?(file)

?

其实,ruby已经为我们内置了一个abort方法。

?

abort "file doesn't exist!" unless File.exist?(file)

?

发表评论
用户名: 匿名