るりまサーチ

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

別のキーワード

  1. _builtin enclose
  2. threadgroup enclose
  3. enclose _builtin
  4. enclose threaderror
  5. enclose threadgroup

ライブラリ

検索結果

ThreadGroup#enclosed? -> bool (24260.0)

自身が enclose されているなら true を返します。そうでないなら false を返します。デフォルトは false です。

...自身が enclose されているなら true を返します。そうでないなら false を返します。デフォルトは false です。

freeze された ThreadGroup には Thread の追加/削除ができませんが、enclosed? は false を返します。

thg = ThreadGroup.new
p...
...thg.enclosed? # => false
thg.enclose
p thg.enclosed? # => true

thg = ThreadGroup.new
p thg.enclosed? # => false
thg.freeze
p thg.enclosed? # => false

@see ThreadGroup#enclose...