本文共 254 字,大约阅读时间需要 1 分钟。
function values(t) local i = 0return function () i=i+1 return t[i]endendt={ 10,20,30}iter=values(t)while true do local val = iter() if not val then break else print(val) endendfor i in values(t) do print(i)end--10--20--302.
转载地址:http://dbrxo.baihongyu.com/