对于全局变量,如果你有一个字符串“name”,你可以使用_G [name]来访问全局变量名:
@H_404_2@function setGlobal(name,val)
_G[name] = val
end
如果你有
@H_404_2@-- module.lua local var1 local var2没有_L可以让你为当地人做同等的事情:
@H_404_2@function setLocal(name,val) _L[name] = val -- _L doesn't exist end解决方法
您可以在
debug
library中使用debug.gelocal()和debug.setlocal():
@H_404_2@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
测试:
@H_404_2@local var1 local var2 setLocal("var1",42) print(var1)产量:42