function print_r ( t )
local print_r_cache={}
local function sub_print_r(t,indent)
if (print_r_cache[tostring(t)]) then
print(indent.."*"..tostring(t))
else
print_r_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_print_r(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_print_r(t," ")
print("}")
else
sub_print_r(t," ")
end
print()
end
lua 輸出table
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
- 文/潘曉璐 我一進店門濒憋,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人陶夜,你說我怎么就攤上這事凛驮。” “怎么了条辟?”我有些...
- 文/不壞的土叔 我叫張陵黔夭,是天一觀的道長。 經(jīng)常有香客問我羽嫡,道長本姥,這世上最難降的妖魔是什么? 我笑而不...
- 正文 為了忘掉前任杭棵,我火速辦了婚禮婚惫,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘魂爪。我一直安慰自己先舷,他們只是感情好,可當我...
- 文/花漫 我一把揭開白布滓侍。 她就那樣靜靜地躺著蒋川,像睡著了一般。 火紅的嫁衣襯著肌膚如雪撩笆。 梳的紋絲不亂的頭發(fā)上捺球,一...
- 文/蒼蘭香墨 我猛地睜開眼醉冤,長吁一口氣:“原來是場噩夢啊……” “哼秩霍!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起蚁阳,我...
- 正文 年R本政府宣布,位于F島的核電站濒析,受9級特大地震影響正什,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜号杏,卻給世界環(huán)境...
- 文/蒙蒙 一婴氮、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧盾致,春花似錦莹妒、人聲如沸。這莊子的主人今日做“春日...
- 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至蜈块,卻和暖如春鉴腻,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背百揭。 一陣腳步聲響...
推薦閱讀更多精彩內(nèi)容
- int_dump是一個用于調(diào)試輸出數(shù)據(jù)的函數(shù)志鞍,能夠打印出nil,boolean,number,string,tab...
- 先創(chuàng)建服務(wù)端的APP 1.官網(wǎng)下載Winrun4j。http://winrun4j.sourceforge.net...