看例子代码:

do
	table_ = {
		a = 1,
		foo = function(i)
					return i
				end
	}

	print(table_.foo(1))
end