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

前端之家收集整理的这篇文章主要介绍了[寒江孤叶丶的Cocos2d-x之旅_31]lua的table深拷贝前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

原创文章,欢迎转载,转载请注明:文章来自[寒江孤叶丶的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 u
end
原文链接:https://www.f2er.com/cocos2dx/343298.html

猜你在找的Cocos2d-x相关文章