Ruby控制台應用中的Ctrl+C

來源:互聯網
上載者:User

在Ruby開發Ruby控制台應用的時候,遇到一個問題: 使用者可以通過Ctrl+C來中止運行時的程式。

如果不加控制,則程式會被中止,並列印出錯誤堆棧。

比如下面的程式:

cmd = nil
while cmd !~ /Y|y|N|n/
  print "continue?(Y/N):"
  cmd = STDIN.gets
  cmd.chomp!
end
if cmd =~ /Y|y/ then
  puts "continue."
else
  puts "exit."
end

運行時,Ctrl+C中斷,則螢幕上出現:

continue?(Y/N):E:/ProjectRuby/03_プロジェクト開発/06_Source/TestRu
nner/tester.rb:48:in `gets': Interrupt
        from E:/ProjectRuby/03_プロジェクト開発/06_Source/TestRunn
er/tester.rb:48

為了防止中斷資訊帶給使用者糟糕的提示資訊,程式中應該對該情況加以處理,

使用者的Ctrl+C會在Ruby底層拋出一個 Interrupt 異常,因此你可以通過begin...rescue...end來捕獲該異常。

begin
  cmd = nil
  while cmd !~ /Y|y|N|n/
    print "continue?(Y/N):"
    cmd = STDIN.gets
    cmd.chomp!
  end
  if cmd =~ /Y|y/ then
    puts "continue."
  else
    puts "exit."
  end
rescue Interrupt
  puts "Programme is interrupted."
end

運行時,Ctrl+C中斷,則螢幕上出現:

continue?(Y/N):Programme is interrupted.

從而避免堆棧資訊給使用者帶來的迷惑。

ps:  Kernal::exit  命令則會拋出 SystemExit 異常。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.