原创文章,欢迎转载,转载请注明:文章来自[寒江孤叶丶的Cocos2d-x之旅系列]
博客地址:http://blog.csdn.net/qq446569365
在LUA中,重写父类函数之后有时候需要调用父类方法,LUA调用父类方法要比C++中略为复杂一些,如下:
--Test:APUtils.getSuperMethod(self,"setposition")(self,p) --调用父类方法并传递参数--获取父类函数function _G.getSuperMethod(table,methodname) local mt = getMetatable(table) local method = nil while mt and not method do method = mt[methodname] if not method then local index = mt.__index if index and type(index) == "function" then method = index(mt,methodname) elseif index and type(index) == "table" then method = index[methodname] end end mt = getMetatable(mt) end return methodend总结
以上是内存溢出为你收集整理的[寒江孤叶丶的Cocos2d-x之旅_37]获取LUA的父类方法全部内容,希望文章能够帮你解决[寒江孤叶丶的Cocos2d-x之旅_37]获取LUA的父类方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)