为什么我不能使用 Set:union() 而不是 Set.union?

发布于 2024-09-24 19:24:03 字数 568 浏览 10 评论 0原文

我正在学习 Lua,我宁愿使用冒号 (:) 作为方法。不幸的是,它并不是在所有地方都有效。请参阅我的代码:

Set= {}
local mt= {}
function Set:new(m)
    local set= {}
    setmetatable(set,mt)
    for a,b in pairs (m) do
        set[b]=true
    end
    return set
end

function Set.union(a,b)
    local res=Set:new ({})
    for k in pairs (a) do res[k]=true end
    for k in pairs (b) do res[k]=true end
    return res
end
mt.__add=Set.union   -- why Set:union() is not working here ?

s1=Set:new {22,55,77}
s2=Set:new {2,5,3}
s3=s1+s2

如何在提到的地方使用 Set:union() 还是不能在这里使用?

I am learning Lua and I would rather use the colon (:) for methods. Unfortunately, it's not working everywhere. See my code:

Set= {}
local mt= {}
function Set:new(m)
    local set= {}
    setmetatable(set,mt)
    for a,b in pairs (m) do
        set[b]=true
    end
    return set
end

function Set.union(a,b)
    local res=Set:new ({})
    for k in pairs (a) do res[k]=true end
    for k in pairs (b) do res[k]=true end
    return res
end
mt.__add=Set.union   -- why Set:union() is not working here ?

s1=Set:new {22,55,77}
s2=Set:new {2,5,3}
s3=s1+s2

How can I use Set:union() on the mentioned place or is it not possible to use here?

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

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

发布评论

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

评论(1

流殇 2024-10-01 19:24:03

因为冒号只是语法糖,仅用于定义和调用函数。正如您可能已经读过的那样,obj:f() 相当于 obj.f(obj)function A:f() 相当于函数 Af(self)。这就是冒号的全部用途。

在您的示例中, Set:union 不属于上述两种用途中的任何一种。确实没有更多内容,但请随时询问:)

Because the colon is syntactic sugar only for defining and calling a function. As you have probably read obj:f() is equivalent to obj.f(obj) and function A:f() is equivalent to function A.f(self). That's all colon is used for.

In your example Set:union doesn't fall into any of the two uses above. There isn't really more into it, but feel free to ask :)

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