我试图打印一个表可能包含表。但是,我无法以递归方式打印它。
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;
这是一张测试表:
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;
现在,当我打印表格时,我明白了:
> debugTable(a)
- 1 10
- 12 30
- 33 44
- 55 43
- 11 40
12 10
10 11
11 11
这对我来说很困惑,因为我期待的树比我得到的更深。
我错过了什么?
答案 0 :(得分:1)
我认为你有一个轻微的'错误',只是简单地把它弄平了。变化
debugTable(v, " - ");
to(类似)
debugTable(v, ind..'-- ')
你看到了真正的深度。
10 11
11 11
12 10
-- 1 10
-- -- -- 33 44
-- -- -- 55 43
-- -- 12 30
-- -- 11 40
答案 1 :(得分:0)
对于大量深度嵌套的表,您最终将使用该方法溢出堆栈。如果输出字符串变得太大,巨大的表也会在字符串连接期间导致“内存不足”错误。如果您遇到此问题,可以在此处尝试我的答案:How to dump a table to console?