在 Lua 表中实现后备/默认 getter

发布于 2024-12-21 00:01:25 字数 198 浏览 0 评论 0原文

有没有办法实现类似python的__getitem__的机制?

例如,具有以下内容:

local t1 = {a=1, b=2, c=3, d=4} 

如果在代码中,将调用 t1.e,那么我希望返回其他内容而不是 nil

Is there a way to implement a mechanism similar to python's __getitem__?

for instance, having the following:

local t1 = {a=1, b=2, c=3, d=4} 

if in code, t1.e will be called, then I wish to have something else returned rather than nil

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

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

发布评论

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

评论(1

暖风昔人 2024-12-28 00:01:25

您可以使用 setmetatable__index 元方法:

local t1 = {a = 1, b = 2, c = 3, d = 4}

setmetatable(t1, {
    __index = function(table, key)
        return "something"
    end
})

print(t1.hi) -- prints "something"

请注意,当您执行 t.nonexistant = Something 时,不会调用此方法。为此,您需要 __newindex 元方法:

local t1 = {a = 1, b = 2, c = 3, d = 4}

setmetatable(t1, {
    __index = function(table, key)
        return "something"
    end,

    __newindex = function(table, key, value)
        rawset(table, tostring(key) .. '_nope', value)
    end
})

print(t1.hi) -- prints "something"
t1.hi = 'asdf'
print(t1.hi) -- prints "something"
print(t1.hi_nope) -- prints "asdf"

You can use setmetatable and the __index metamethod:

local t1 = {a = 1, b = 2, c = 3, d = 4}

setmetatable(t1, {
    __index = function(table, key)
        return "something"
    end
})

print(t1.hi) -- prints "something"

Note that this will not be called when you do t.nonexistant = something. For that, you need the __newindex metamethod:

local t1 = {a = 1, b = 2, c = 3, d = 4}

setmetatable(t1, {
    __index = function(table, key)
        return "something"
    end,

    __newindex = function(table, key, value)
        rawset(table, tostring(key) .. '_nope', value)
    end
})

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