[寒江孤叶丶的Cocos2d-x之旅_31]lua的table深拷贝

[寒江孤叶丶的Cocos2d-x之旅_31]lua的table深拷贝,第1张

概述原创文章,欢迎转载,转载请注明:文章来自[寒江孤叶丶的Cocos2d-x之旅系列] 博客地址:http://blog.csdn.net/qq446569365 写个深拷贝放这儿存着……以后好找…… -- table 的深拷贝,会判断userdata,nil,以及其他值类型并将拷贝结果返回--(userdata 会判断是否有clone方法如果有返回clone调用结果,如果没有返回nil)func

原创文章,欢迎转载,转载请注明:文章来自[寒江孤叶丶的Cocos2d-x之旅系列]

博客地址:http://blog.csdn.net/qq446569365

写个深拷贝放这儿存着……以后好找……

-- table 的深拷贝,会判断userdata,nil,以及其他值类型并将拷贝结果返回--(userdata 会判断是否有clone方法如果有返回clone调用结果,如果没有返回nil)function _G.APUtils.deepcopy(t)     if not t then         error("deepcopy t is nil ")        return nil    end    if type(t) ~= "table" then        if type(t) == "userdata" then            if t.clone then                return t:clone()            else                return nil            end        else            return t        end    end    local function _deepcopy(from,to)        for k,v in pairs(from) do            if type(v) ~= "table" then                to[k] = v;            else                to[k] = {};                _deepcopy(v,to[k]);            end        end        return setMetatable(to,getMetatable(from))    end    local u = {}    _deepcopy(t,u)    return uend
总结

以上是内存溢出为你收集整理的[寒江孤叶丶的Cocos2d-x之旅_31]lua的table深拷贝全部内容,希望文章能够帮你解决[寒江孤叶丶的Cocos2d-x之旅_31]lua的table深拷贝所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1055562.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存