此:
debug.getmetatable("").__index = function (s, i) return s:sub(i, i) end
和此:
debug.getmetatable("").__index = _proc_lua_read
不起作用。
答案 0 :(得分:5)
尝试
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