문제

Here is a sample program:

def worker(from, to)
  puts "#{from}..#{to}"

  for i in from..to do
    if i == 42
      puts "kill the rest of the threads"
      break;
    end
    puts i
    sleep 1
  end
end

if __FILE__ == $0
  threads = []
  for i in 0..9 do
    threads << Thread.new { worker(i*10, i*10+10) }
  end

  threads.each { |thread| thread.join }
end

I'd like all the threads to stop when one of the threads found the answer (in this case, 42). I'm not sure what this concept is called, which is why I'm unable to search for it.

I appreciate the help :)

도움이 되었습니까?

해결책

You need a shared thread variable that indicates whether a thread has found the answer and is accessed by the threads via a Mutex.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top