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

lua进阶7--- 面向对象

时间:2014-07-16 17:33:16      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:lua

lua 里面的面向对象可以使开发看起来更简洁 

local tmp = {};
function tmp:create(id)
    local obj = {
      m_id = id,
	  m_name = "guoyilong ",	
	};
	setmetatable(obj, {__index = tmp});
	return obj;
end 

function tmp:printout()
	self.m_id = self.m_id * 45;
	print("===========> self.m_id ",self.m_id);
end


local tt = tmp:create(45);
print("=====> ",tt.m_id);
tt:printout();


obj 作为类tmp 的属性


lua进阶7--- 面向对象,布布扣,bubuko.com

lua进阶7--- 面向对象

标签:lua

原文地址:http://blog.csdn.net/guoyilongedu/article/details/37818701

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