12件ヒット
[1-12件を表示]
(0.064秒)
ライブラリ
- ビルトイン (12)
クラス
- ThreadGroup (12)
検索結果
-
ThreadGroup
# enclosed? -> bool (18132.0) -
自身が enclose されているなら true を返します。そうでないなら false を返します。デフォルトは false です。
...できませんが、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...