Lua格式化打印输出

Lua没有断点调试,只能通过打印输出进行调试,非常不便,打印也只能打印简单的数据,稍微复杂一点的表也没法打印,下面封装了一个可以打印复杂的table的接口,可以直接拷贝使用:

function Util.tablePrint(t)  
    local print_t_cache={}
    local function sub_tablePrint(t,indent)
        if (print_t_cache[tostring(t)]) then
            print(indent.."*"..tostring(t))
        else
            print_t_cache[tostring(t)]=true
            if (type(t)=="table") then
                for pos,val in pairs(t) do
                    if (type(val)=="table") then
                        print(indent.."["..pos.."] => "..tostring(t).." {")
                        sub_tablePrint(val,indent..string.rep(" ",string.len(pos)+8))
                        print(indent..string.rep(" ",string.len(pos)+6).."}")
                    elseif (type(val)=="string") then
                        print(indent.."["..pos..'] => "'..val..'"')
                    else
                        print(indent.."["..pos.."] => "..tostring(val))
                    end
                end
            else
                print(indent..tostring(t))
            end
        end
    end
    if (type(t)=="table") then
        print(tostring(t).." {")
        sub_tablePrint(t,"  ")
        print("}")
    else
        sub_tablePrint(t,"  ")
    end
    print()
end

你可能感兴趣的:(Lua)