るりまサーチ

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

別のキーワード

  1. stringio read
  2. _builtin read
  3. csv read
  4. io read
  5. csv close_read

ライブラリ

クラス

検索結果

ThreadGroup#enclosed? -> bool (21131.0)

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

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

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

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

@see ThreadGroup#enclose...