208件ヒット
[201-208件を表示]
(0.120秒)
ライブラリ
- ビルトイン (208)
キーワード
- [] (12)
-
abort
_ on _ exception (12) -
abort
_ on _ exception= (12) -
add
_ trace _ func (12) -
backtrace
_ locations (24) - fetch (8)
-
ignore
_ deadlock= (4) - key? (12)
- name= (10)
- priority (12)
- priority= (12)
-
report
_ on _ exception (9) -
report
_ on _ exception= (9) - run (12)
-
set
_ trace _ func (12) - stop? (12)
-
thread
_ variable _ set (12) - wakeup (12)
検索結果
先頭1件
-
Thread
# stop? -> bool (3014.0) -
スレッドが終了(dead)あるいは停止(stop)している時、true を返します。
...スレッドが終了(dead)あるいは停止(stop)している時、true を返します。
//emlist[例][ruby]{
a = Thread.new { Thread.stop }
b = Thread.current
a.stop? # => true
b.stop? # => false
//}
@see Thread#alive?, Thread#status...