如何在 LUA 中使用类方法作为属性?

在 Python 中,我们可以使用 @property 装饰器将方法作为属性使用。

>>> Class A:
>>>    @property
>>>    def b(self):
>>>        return 1
>>> a = A()
>>> a.b
1

在 Lua 中有没有这样做的方法?是否有任何示例?

原文链接 https://stackoverflow.com/questions/71033533

点赞