我有以下代码(来自 Ruby 教程):
require 'thread'
count1 = count2 = 0
difference = 0
counter = Thread.new do
loop do
count1 += 1
count2 += 1
end
end
spy = Thread.new do
loop do
difference += (count1 - count2).abs
end
end
sleep 1
puts "count1 : #{count1}"
puts "count2 : #{count2}"
puts "difference : #{difference}"
counter.join(2)
spy.join(2)
puts "count1 : #{count1}"
puts "count2 : #{count2}"
puts "difference : #{difference}"
这是使用Mutex.synchronize
. 在我的电脑上,结果与教程完全不同。调用 后join
,计数有时相等:
count1 : 5321211
count2 : 6812638
difference : 0
count1 : 27307724
count2 : 27307724
difference : 0
有时不是:
count1 : 4456390
count2 : 5981589
difference : 0
count1 : 25887977
count2 : 28204117
difference : 0
我不明白0
即使计数显示的数字非常不同,差异怎么可能仍然存在。
add
操作大概是这样的:
val = fetch_current(count1)
add 1 to val
store val back into count1
和类似的东西count2
。Ruby 可以在线程之间切换执行,因此它可能无法完成对变量的写入,但是当 CPU 回到线程时,它应该从中断的那一行继续,对吧?
并且仍然只有一个线程正在写入变量。怎么可能在loop do
块内count2 += 1
执行更多次?