るりまサーチ

最速Rubyリファレンスマニュアル検索!
11件ヒット [1-11件を表示] (0.077秒)
トップページ > クエリ:i[x] > クエリ:exit[x] > クエリ:success?[x]

別のキーワード

  1. _builtin exit
  2. irb irb_exit
  3. monitor exit
  4. irb irb_at_exit
  5. thread exit

ライブラリ

クラス

検索結果

SystemExit#success? -> bool (24125.0)

終了ステータスが正常終了を示す値ならば true を返します。

...値ならば true を返します。

大半のシステムでは、ステータス 0 が正常終了を表します。

例:

begin
exit
true
rescue SystemExit => err
p err.success? # => true
end

begin
exit
false
rescue SystemExit => err
p err.success? # => false
end...