我是靠谱客的博主 直率鞋子,最近开发中收集的这篇文章主要介绍Lua模拟面向对象示例分享,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

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

复制代码 代码如下:

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模拟面向对象示例分享的全部内容,希望文章能够帮你解决Lua模拟面向对象示例分享所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(113)

评论列表共有 0 条评论

立即
投稿
返回
顶部