local FuncEnv={} setmetatable(FuncEnv, {__index = _G}) local func=loadfile("a.lua") setfenv(func,FuncEnv)()--等价于setenv(func,FuncEnv) ...
確定! 回上一頁