如何重载Lua字符串下标运算符?

发布于 2024-11-02 02:28:32 字数 207 浏览 1 评论 0原文

这:

debug.getmetatable("").__index = function (s, i) return s:sub(i, i) end

和这:

debug.getmetatable("").__index = _proc_lua_read

不起作用。

This:

debug.getmetatable("").__index = function (s, i) return s:sub(i, i) end

and this:

debug.getmetatable("").__index = _proc_lua_read

does not work.

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

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

发布评论

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

评论(1

菊凝晚露 2024-11-09 02:28:32

debug.getmetatable("").__index = function (s, i) return string.sub(s,i,i) end

注意,通过以这种方式重新定义字符串的 __index,您将失去在字符串上调用方法的能力:请注意代码如何不调用 s:sub。如需避免这种情况的更好解决方案,请参阅 http://lua- users.org/lists/lua-l/2007-11/msg00619.html 。或者设置 __call 来代替:

getmetatable("").__call = string.sub

Try

debug.getmetatable("").__index = function (s, i) return string.sub(s,i,i) end

Note that by redefining __index for strings in that way, you lose the ability to call methods on strings: note how the code does not call s:sub. For a better solution that avoids that, see http://lua-users.org/lists/lua-l/2007-11/msg00619.html . Or set __call instead:

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