Lua中访问table里函数的方法示例

看例子代码:

代码如下:

do

 table_ = {

  a = 1,

  foo = function(i)

     return i

    end

 }

 print(table_.foo(1))

end

相关推荐