不思議なLua:pairsとipairsからforサイクルを解析する
1107 ワード
pairs/ipairs/forを使用しない場合、配列を巡る操作はどのように実現されますか?次に実現したのは,実用的な意味がなく,luaのforループを理解するためだけである.
-- pairs ipairs for
local function ipairs_next_func(tab, key)
key = key + 1
value = tab[key]
if value then
return key, value
end
end
local function ipairs_func(tab)
return ipairs_next_func, tab, 0
end
local function pairs_next_func(tab, key)
key = next(tab, key)
value = tab[key]
if value then
return key, value
end
end
local function pairs_func(tab, key)
return pairs_next_func, tab, nil
end
local function for_func(iter_func, test_table, user_func)
local next, var, state = iter_func(test_table)
while true do
local k, v = next(var, state)
if not k then break end
state = k
user_func(k, v)
end
end
--
local test_table =
{
a = 1,
2,
x = 'x',
3,
}
print('ipairs:')
for k, v in ipairs(test_table) do
print(k,v)
end
print("ipairs_func:")
for_func(ipairs_func, test_table, print)
print('pairs:')
for k, v in pairs(test_table) do
print(k,v)
end
print("pairs_func:")
for_func(pairs_func, test_table, print)