全部博文(280)
分类: C/C++
2013-06-26 11:16:33
luaplus库里有个clone函数的函数原型是这样的点击(此处)折叠或打开
- function deepcopy(tDest, tSrc)
- for key,value in tSrc do
- if type(value)=='table' and value["spuer"]==nil then
- tDest[key] = {}
- deepcopy(tDest[key],value)
- else
- tDest[key]=value
- end
- end
- end