4

首先,我刚刚开始 Lua,所以如果这不可能或很明显,对不起。

我正在尝试做一个面向对象的实现,例如:

Parent = {
  ChildVariable = "Hello",
  ChildFunction = function ()
     print(Parent.ChildVariable)
  end  
}

我想知道的是,除了做'Parent.ChildVariable',我是否可以做'ChildVariable',它在表格中,所以我认为有一些方法可以访问它。

4

2 回答 2

7
Parent = {
  ChildVariable = "Hello",
  ChildFunction = function(self)
     print(self.ChildVariable)
  end  
}

Parent:ChildFunction()
于 2013-02-07T07:58:16.463 回答
4

Lua 有一个特殊的结构:冒号操作符。以下两行是等效的:

tbl.func(tbl)

tbl:func()
于 2013-02-07T07:59:53.960 回答