打印递归表
Printing recursive tables
我正在尝试打印 table 可能包含 table。但是,我无法让它递归打印。
function debugTable (t, indent)
local ind = indent or "";
local printFunc = print
if (fibaro or {}).debug then
function printFunc(...)
return fibaro:debug(...)
end
end
for k, v in pairs(t) do
if(type(v) == "table") then
-- recursive call if table
debugTable(v, " - ");
else
printFunc(ind .. k .." ".. tostring(v));
end;
end;
end;
这是一个测试table:
a = {};
c ={["33"] = 44,["55"]=43}
b = {["12"] = 30, ["11"]= 40,["66"]=c};
a["12"] = 10;
a["10"] = 11;
a["22"] = {10,["13"]=b};
a["11"] = 11;
现在,当我打印 table 时,我得到了这个:
> debugTable(a)
- 1 10
- 12 30
- 33 44
- 55 43
- 11 40
12 10
10 11
11 11
这让我感到困惑,因为我期待一棵比我得到的更深的树。
我缺少什么?
我认为你有一个未成年人 'bug' 只是把它弄平了。变化
debugTable(v, " - ");
到(类似)
debugTable(v, ind..'-- ')
你会看到真正的深度。
10 11
11 11
12 10
-- 1 10
-- -- -- 33 44
-- -- -- 55 43
-- -- 12 30
-- -- 11 40
对于大量深层嵌套的表,您最终会使用该方法溢出堆栈。如果输出字符串变得太大,巨大的表也会在字符串连接期间导致 'out of memory' 错误。如果你 运行 遇到这个问题,你可以在这里尝试我的答案:How to dump a table to console?
我正在尝试打印 table 可能包含 table。但是,我无法让它递归打印。
function debugTable (t, indent)
local ind = indent or "";
local printFunc = print
if (fibaro or {}).debug then
function printFunc(...)
return fibaro:debug(...)
end
end
for k, v in pairs(t) do
if(type(v) == "table") then
-- recursive call if table
debugTable(v, " - ");
else
printFunc(ind .. k .." ".. tostring(v));
end;
end;
end;
这是一个测试table:
a = {};
c ={["33"] = 44,["55"]=43}
b = {["12"] = 30, ["11"]= 40,["66"]=c};
a["12"] = 10;
a["10"] = 11;
a["22"] = {10,["13"]=b};
a["11"] = 11;
现在,当我打印 table 时,我得到了这个:
> debugTable(a)
- 1 10
- 12 30
- 33 44
- 55 43
- 11 40
12 10
10 11
11 11
这让我感到困惑,因为我期待一棵比我得到的更深的树。 我缺少什么?
我认为你有一个未成年人 'bug' 只是把它弄平了。变化
debugTable(v, " - ");
到(类似)
debugTable(v, ind..'-- ')
你会看到真正的深度。
10 11
11 11
12 10
-- 1 10
-- -- -- 33 44
-- -- -- 55 43
-- -- 12 30
-- -- 11 40
对于大量深层嵌套的表,您最终会使用该方法溢出堆栈。如果输出字符串变得太大,巨大的表也会在字符串连接期间导致 'out of memory' 错误。如果你 运行 遇到这个问题,你可以在这里尝试我的答案:How to dump a table to console?