習(xí)慣了php中的var_dump()函數(shù),而如今寫(xiě)lua的時(shí)候總習(xí)慣使用var_dump()函數(shù),于是就自己動(dòng)手寫(xiě)了一個(gè)類似功能的var_dump()函數(shù)。
復(fù)制代碼 代碼如下:
function var_dump(data, max_level, prefix)
if type(prefix) ~= "string" then
prefix = ""
end
if type(data) ~= "table" then
print(prefix .. tostring(data))
else
print(data)
if max_level ~= 0 then
local prefix_next = prefix .. " "
print(prefix .. "{")
for k,v in pairs(data) do
io.stdout:write(prefix_next .. k .. " = ")
if type(v) ~= "table" or (type(max_level) == "number" and max_level = 1) then
print(v)
else
if max_level == nil then
var_dump(v, nil, prefix_next)
else
var_dump(v, max_level - 1, prefix_next)
end
end
end
print(prefix .. "}")
end
end
end
您可能感興趣的文章:- 獲取Lua表結(jié)構(gòu)(table)數(shù)據(jù)實(shí)例
- Lua極簡(jiǎn)入門指南:全局變量
- Lua極簡(jiǎn)入門指南(六):模塊
- Lua中實(shí)現(xiàn)StringBuffer功能
- lua獲取未來(lái)某時(shí)間點(diǎn)的時(shí)間戳解決方案