るりまサーチ

最速Rubyリファレンスマニュアル検索!
2件ヒット [1-2件を表示] (0.076秒)

別のキーワード

  1. drb thread
  2. etc sc_thread_threads_max
  3. thread exit
  4. tracer get_thread_no
  5. tracer display_thread_id?

クラス

検索結果

Thread::Queue#empty? -> bool (38234.0)

キューが空の時、真を返します。

...キューが空の時、真を返します。

//emlist[例][ruby]{
require 'thread'
q = Queue.new
q.empty? # => true
q.push(:resource)
q.empty? # => false
//}...