function CocoStudioTestScene.extend(target)
local t = tolua.getpeer(target)
if not t then
t = {}
tolua.setpeer(target, t)
end
setmetatable(t, CocoStudioTestScene)
return target
end
刚接触quick和lua,对cocos2dx的class稍微理解了一点,但对这另一种继承方法不是很理解
求大家帮我解释一下getpeer和setpeer的作用,还有setpeer和__index的关系