⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 02 - handling an exception.rb

📁 O Reilly Ruby Cookbook source code
💻 RB
字号:
def raise_and_rescue  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.'endraise_and_rescue# I am before the raise.# I am rescued!# I am after the begin block.#---def do_it(code)  eval(code)rescue   puts "Cannot do it!"enddo_it('puts 1 + 1')# 2do_it('puts 1 +')# SyntaxError: (eval):1:in `do_it': compile error#---def do_it(code)  eval(code)rescue SyntaxError  puts "Cannot do it!"enddo_it('puts 1 +')# Cannot do it!#---begin # ...rescue OneTypeOfException # ...rescue AnotherTypeOfException # ...end#---begin  raise 'A test exception.'rescue Exception => e  puts e.message  puts e.backtrace.inspectend# ["(irb):33:in `irb_binding'", #  "/usr/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'", #  ":0"]#---require 'English'begin  raise 'Another test exception.'rescue Exception   puts $!.message  puts $ERROR_INFO.messageend# Another test exception.# Another test exception.#---

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -