Lua中的方法声明

发布于 2024-11-26 07:51:04 字数 160 浏览 3 评论 0原文

这两种类型的声明在性能方面有什么区别吗?

local object = newObject()

function object:method(params)
end

local object:method = function(params)
end

Is there any difference between these two types of declarations performance-wise?

local object = newObject()

function object:method(params)
end

local object:method = function(params)
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

总攻大人 2024-12-03 07:51:04

是的,有区别。第二个无法编译。所以它的性能为零;)

“方法声明”只是 Lua 中的语法糖。它们是相同的:

function object.func(self, param)
end

function object:func(param)
end

但是,只有当您将函数命名为函数声明的一部分时,该糖才有效。

Lua 中访问“方法”的“:”语法仅适用于访问存储在表中、由字符串键命名的函数。您不能使用此语法来设置表的值。

或者,换句话说,没有其他方法可以做到这一点:

function object:func(param)
end

无需显式指定“self”参数作为第一个参数。

Yes, there is a difference. The second one doesn't compile. So it has zero performance ;)

A "method declaration" is just syntactical sugar in Lua. These are identical:

function object.func(self, param)
end

function object:func(param)
end

But that sugar only works if you are naming the function as part of the function declaration.

The ':' syntax for accessing "methods" in Lua only works for accessing functions that are stored in a table, named by a string key. You cannot use this syntax to set the value of a table.

Or, to put it another way, there is no other way to do this:

function object:func(param)
end

without explicitly specifying a 'self' parameter as the first parameter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文