るりまサーチ (Ruby 2.5.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.021秒)
トップページ > クラス:SystemExit[x] > バージョン:2.5.0[x] > ライブラリ:ビルトイン[x] > クエリ:systemexit[x] > クエリ:success?[x]

別のキーワード

  1. _builtin systemexit
  2. systemexit status
  3. systemexit new
  4. exit systemexit

検索結果

SystemExit#success? -> bool (81385.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...