test={}
test.prop="这么多伟伟"
function test.do()
print(self.prop)
end
由于特殊需要,需要使用上面的形式,但一直没找到方法。后来看到 云飞的blog
http://blog.codingnow.com/2006/06/oo_lua.html
看到他注释掉的部分“ps. 这里用了点小技巧,将 self 绑定到 closure 上,所以并不使用 a:hello 而是直接用 a.hello 调用成员函数。这个技巧并不非常有用,从效率角度上说,还是不用为好。 ” 却正好是我所需要的,于是查看历史 得到 http://blog.codingnow.com/cloud/LuaOO?time=2006-06-15+13%3A54%3A25
呵呵,正是我所需要的。