博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Lua 打印Table
阅读量:6285 次
发布时间:2019-06-22

本文共 2146 字,大约阅读时间需要 7 分钟。

function dump(value, desciption, nesting)    if type(nesting) ~= "number" then nesting = 3 end    local lookupTable = {}    local result = {}    local function _v(v)        if type(v) == "string" then            v = "\"" .. v .. "\""        end        return tostring(v)    end    local function _dump(value, desciption, indent, nest, keylen)        desciption = desciption or ""        local spc = ""        if type(keylen) == "number" then            spc = string.rep(" ", keylen - string.len(_v(desciption)))        end        if type(value) ~= "table" then            result[#result +1 ] = string.format("%s%s%s = %s", indent, _v(desciption), spc, _v(value))        elseif lookupTable[value] then            result[#result +1 ] = string.format("%s%s%s = *REF*", indent, desciption, spc)        else            lookupTable[value] = true            if nest > nesting then                result[#result +1 ] = string.format("%s%s = *MAX NESTING*", indent, desciption)            else                result[#result +1 ] = string.format("%s%s = {", indent, _v(desciption))                local indent2 = indent.."    "                local keys = {}                local keylen = 0                local values = {}                for k, v in pairs(value) do                    keys[#keys + 1] = k                    local vk = _v(k)                    local vkl = string.len(vk)                    if vkl > keylen then keylen = vkl end                    values[k] = v                end                table.sort(keys, function(a, b)                    if type(a) == "number" and type(b) == "number" then                        return a < b                    else                        return tostring(a) < tostring(b)                    end                end)                for i, k in ipairs(keys) do                    _dump(values[k], k, indent2, nest + 1, keylen)                end                result[#result +1] = string.format("%s}", indent)            end        end    end    _dump(value, desciption, "- ", 1)    for i, line in ipairs(result) do        print(line)    endend

  

转载于:https://www.cnblogs.com/levenies/p/5332366.html

你可能感兴趣的文章
驰骋工作流引擎三种项目集成开发模式
查看>>
SUSE11修改主机名方法
查看>>
jdk6.0 + Tomcat6.0的简单jsp,Servlet,javabean的调试
查看>>
Android:apk签名
查看>>
2(2).选择排序_冒泡(双向循环链表)
查看>>
MySQL 索引 BST树、B树、B+树、B*树
查看>>
微信支付
查看>>
CodeBlocks中的OpenGL
查看>>
短址(short URL)
查看>>
第十三章 RememberMe——《跟我学Shiro》
查看>>
mysql 时间函数 时间戳转为日期
查看>>
索引失效 ORA-01502
查看>>
Oracle取月份,不带前面的0
查看>>
Linux Network Device Name issue
查看>>
IP地址的划分实例解答
查看>>
如何查看Linux命令源码
查看>>
运维基础命令
查看>>
入门到进阶React
查看>>
SVN 命令笔记
查看>>
检验手机号码
查看>>