我的个人项目之一中有以下代码:
def allocate(var, value) # Allocate the variable to the next available spot.
@storage.each do |mem_loc|
if mem_loc.free?
mem_loc.set(var, value) # Set it then break out of the loop.
break
end
end
end
存储数组中的每一项都是一个响应free的对象?并设置。我想要做的是循环遍历数组,寻找下一个空闲(空)对象来设置变量。我的问题是,这只是循环遍历每个对象并将它们全部设置。我是否错误地使用了中断功能?
测试它,我称之为:
store.allocate(:a, 10)
store.allocate(:b, 20)
所以 store[1] 应该设置为 :b 和 20。但是当我输出内容时,它的值为 10,数组的其余部分也是如此。