本文簡要介紹ruby語言中 Process.exit
的用法。
用法
exit(status=true)
Kernel::exit(status=true)
Process::exit(status=true)
通過引發 SystemExit
異常來啟動 Ruby 腳本的終止。可能會捕獲此異常。可選參數用於向調用環境返回狀態碼。 status
的true
和FALSE
分別表示成功和失敗。其他整數值的解釋取決於係統。
begin
exit
puts "never get here"
rescue SystemExit
puts "rescued a SystemExit exception"
end
puts "after begin block"
產生:
rescued a SystemExit exception after begin block
就在終止之前,Ruby 執行任何 at_exit
函數(參見 Kernel::at_exit)並運行任何對象終結器(參見 ObjectSpace::define_finalizer
)。
at_exit { puts "at_exit function" }
ObjectSpace.define_finalizer("string", proc { puts "in finalizer" })
exit
產生:
at_exit function in finalizer
相關用法
- Ruby Process.exit!用法及代碼示例
- Ruby Process.exec用法及代碼示例
- Ruby Process.euid用法及代碼示例
- Ruby Process.egid用法及代碼示例
- Ruby Process.groups用法及代碼示例
- Ruby Process.wait2用法及代碼示例
- Ruby Process.getpgrp用法及代碼示例
- Ruby Process.setproctitle用法及代碼示例
- Ruby Process.setrlimit用法及代碼示例
- Ruby Process.uid用法及代碼示例
- Ruby Process.pid用法及代碼示例
- Ruby Process.detach用法及代碼示例
- Ruby Process.maxgroups用法及代碼示例
- Ruby Process.clock_gettime用法及代碼示例
- Ruby Process.groups=用法及代碼示例
- Ruby Process.clock_getres用法及代碼示例
- Ruby Process.getsid用法及代碼示例
- Ruby Process.getpriority用法及代碼示例
- Ruby Process.times用法及代碼示例
- Ruby Process.getpgid用法及代碼示例
- Ruby Process.setpriority用法及代碼示例
- Ruby Process.kill用法及代碼示例
- Ruby Process.initgroups用法及代碼示例
- Ruby Process.spawn用法及代碼示例
- Ruby Process.last_status用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Process.exit。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。