这个:
debug.getmetatable("").__index = function (s, i) return s:sub(i, i) end
还有这个:
debug.getmetatable("").__index = _proc_lua_read
不起作用。
最佳答案
尝试
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