这是我的功能
def rating(array)
sum_count = array.values.inject(0) { |sum_count,value| sum_count + value }
run_count = 0
array.each do |tag,count|
run_count += count
cum_distn = run_count/sum_count
logger.debug "cum_distn is #{cum_distn.to_f}; run_count is #{run_count.to_f}; sum_count is #{sum_count}"
if cum_distn < 0.25
...
elsif cum_distn < 0.5
...
else
...
end
end
end
对于我的数组中每个计数为 1 的 2 个对象,我的记录器显示如下:
cum_distn is 0.0; run_count is 1.0; sum_count is 2
cum_distn is 1.0; run_count is 2.0; sum_count is 2
似乎 cum_distn 的值仅在一个循环完成后才更新,而我打算让它在 if 函数打开之前立即更新。我有两个问题:
(a) 为什么会发生这种情况(因为我看不到任何合乎逻辑的解释)?
(b) 我怎样才能纠正这个问题来做我想做的事?