码迷,mamicode.com
首页 > 其他好文 > 详细

Lua程序设计之————Lua面向对象2

时间:2017-06-06 01:11:16      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:cti   blog   变量   man   对象   art   程序设计   hello   table   

技术分享

技术分享

----------------------------------------------------------- Lua面向对象3
local smartMan = {
    name = "Tinywan",
    age = 26,
    money = 800000,
    sayHello = function()
        print("Tinywan say 大家好")
    end
}
local t1 = {}
local mt = {
    __index = smartMan,
    __newindex = function(table, key, value)
        print(key .. "字段不存在不要试图给他赋值")
    end
}
setmetatable(t1, mt)
t1.sayHello = function()
    print("HAHA")
end
t1.sayHello()
--- 输出结果
-- sayHello字段不存在不要试图给他赋值
-- Tinywan say 大家好

技术分享

技术分享

 

----------------------------------------------------------- Lua面向对象3
local smartMan = {
    name = "none"
}
local other = {
    name = "大家好,我是无赖的table"
}
local t1 = {}
local mt = {
    __index = smartMan,
    __newindex = other
}
setmetatable(t1, mt)
print("other的名字,赋值前:" .. other.name)
t1.name = "峨眉大侠"
print("other的名字,赋值后:" .. other.name)
print("t1 的名字:" .. t1.name)
--- 输出结果
-- other的名字,赋值前:大家好,我是无赖的table
-- other的名字,赋值后:峨眉大侠
-- t1 的名字:none

 技术分享

 

 技术分享

 

技术分享

技术分享

 技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

有问题

技术分享

 

 技术分享

技术分享

技术分享

local 变量不放在全局函数中去

 技术分享

以上不需要 return 返回

技术分享

 

Lua程序设计之————Lua面向对象2

标签:cti   blog   变量   man   对象   art   程序设计   hello   table   

原文地址:http://www.cnblogs.com/tinywan/p/6947551.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!