面向对象
1: 类的表 --> 类的实例的元表:
function ClassA:
2: 类的实例
function ClassA:new(instant)
if not instant then
instant = {} --类的实例
end
setmetatable(instant, {__index = self})
return instant
end
3: 类的实例调用类的方法:
self: 绑定的实例对象;
1: 类的表 --> 类的实例的元表:
function ClassA:
2: 类的实例
function ClassA:new(instant)
if not instant then
instant = {} --类的实例
end
setmetatable(instant, {__index = self})
return instant
end
3: 类的实例调用类的方法:
self: 绑定的实例对象;