zoukankan      html  css  js  c++  java
  • LUA中点号和冒号的区别

    Student = {};
    Student.__index = Student;
    
    function Student:new(name, age)
        local temp = {};
        setmetatable(temp, Student);
        temp.name = name;
        temp.age = age;
        return temp;
    end
    
    
    function Student:info()
        print(self.name, self.age);
    --运行stu2时会报错 -- print("name:" .. self.name .. " age:" .. self.age); end --输出:stu1 10 stu1 = Student.new(nil, "stu1", 10); stu1:info(); --输出:10 nil stu2 = Student.new("stu2", 10); stu2:info(); --输出:nil stu3 stu3 = Student:new(nil, "stu3", 10); stu3:info(); --输出:stu4 10 stu4 = Student:new("stu4", 10); stu4:info();
    Student = {};
    Student.__index = Student;
    
    --此处做修改
    function Student.new(name, age)
        local temp = {};
        setmetatable(temp, Student);
        temp.name = name;
        temp.age = age;
        return temp;
    end
    
    
    function Student:info()
        print(self.name, self.age);
    end
    
    --输出:nil    stu1
    stu1 = Student.new(nil, "stu1", 10);    
    stu1:info();
    
    --输出:stu2    10
    stu2 = Student.new("stu2", 10);    
    stu2:info();
    
    --输出:table: 0037B200    nil
    stu3 = Student:new(nil, "stu3", 10);    
    stu3:info();
    
    --输出:table: 0037B200    stu4
    stu4 = Student:new("stu4", 10);    
    stu4:info();
    
    --输出:table: 0084B200    stu5
    stu5 = Student:new("stu5");    
    stu5:info();

    --:stu6    10
    stu6 = Student:new("stu6", 10);    
    stu6.info(stu6);
    Student = {};
    Student.__index = Student;
    
    function Student.new(name, age)
        local temp = {};
        setmetatable(temp, Student);
        temp.name = name;
        temp.age = age;
        return temp;
    end
    
    
    function Student:info()
        print(self.name, self.age);
    end
    
    function Student:message()
        print(self.name, self.age);
    end
    
    function Student.school()
        print("go to school!!!");
    end
    
    --声明类时用点号:Student.new(name, age)
    stu = Student:new("zhangsan", 10);
    stu:info();    --输出信息错误
    stu.school();
    --stu.message(); --报错
    stu.message(stu);--输出信息错误
    
    mes = Student.new("zhangsan", 10);
    --mes.info();    --报错
    mes.info(mes);
    mes.school();
    
    
    
    --声明类时用冒号:Student.new(name, age)
    --stu = Student:new("zhangsan", 10);
    --stu:info();
    --stu.info(stu);
    --stu.school();
    
    --mes = Student.new(nil, "mes", 20);
    --mes:message();
    --mes.school();
  • 相关阅读:
    乒乓球运动中两种最基本的握拍方法
    Google 的 OKR 制度与KPI 有什么不同?
    推荐物品时,为了消除个人特殊癖好,或者未打分的情况,可通过加权计算进行修正
    甘特图
    解耦、异步、削峰 消息队列
    供给侧
    货币化 经济货币化 信用 经济金融化
    新浪广告交易平台(SAX)DSP手册
    SU suspike命令学习
    SU Demos-02Filtering-02Subfilt
  • 原文地址:https://www.cnblogs.com/JimLy-BUG/p/5548730.html
Copyright © 2011-2022 走看看