欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Lua模拟面向对象示例分享

程序员文章站 2022-08-29 21:42:52
代码很简单,这里就不多废话了,大家主要看看思路 复制代码 代码如下: function class(super)     local m...

代码很简单,这里就不多废话了,大家主要看看思路

复制代码 代码如下:

function class(super)
    local mt = {__call = function(_c, ...)
        local function create(_c, _o, ...)
            if _c.__super then create(_c.__super, _o, ...) end
            if _c.__ctor then _c.__ctor(_o, ...) end
            return _o
        end
        local _o = create(_c, {}, ...)
        return setmetatable(_o, _c)
    end}
    mt.__index = super or mt
    return setmetatable({__super = super}, mt)
end
----------------------------------------------------------------------
a = class()
function a:__ctor(s)
    self.i = 123
    self.j = 333
    print('a ctor', s)
end
local a = a('a')
print(a.i, a.j)
-- b继承a
b = class(a)
function b:__ctor(s)
    self.i = 444
    print('b ctor', s)
end
local b = b('b')
print(b.i, b.j)

示例截图

Lua模拟面向对象示例分享

以上就是本文的全部内容了,希望大家能够喜欢。