对于全局变量,如果你有一个字符串“name”,你可以使用_G [name]来访问全局变量名:
function setGlobal(name,val) _G[name] = val end
如果你有
-- module.lua local var1 local var2
没有_L可以让你为当地人做同等的事情:
function setLocal(name,val) _L[name] = val -- _L doesn't exist end
解决方法
您可以在
debug
library中使用debug.gelocal()和debug.setlocal():
function setLocal(name,val) local index = 1 while true do local var_name,var_value = debug.getlocal(2,index) if not var_name then break end if var_name == name then debug.setlocal(2,index,val) end index = index + 1 end end
测试:
local var1 local var2 setLocal("var1",42) print(var1)
产量:42