当前位置 : 主页 > 网络编程 > lua >

lua – 最新版本中的Loadstring函数替换

来源:互联网 收集:自由互联 发布时间:2021-06-23
我从lua 5.1更新到5.3.2,我的一个脚本无法工作导致尝试调用nil值(全局’loadstring’)那么,他们是否用新函数替换它? 在那里你可以找到功能https://www.lua.org/pil/8.html 在那里你可以测试它(不
我从lua 5.1更新到5.3.2,我的一个脚本无法工作导致尝试调用nil值(全局’loadstring’)那么,他们是否用新函数替换它?

在那里你可以找到功能https://www.lua.org/pil/8.html
在那里你可以测试它(不起作用)http://www.lua.org/cgi-bin/demo

从Lua 5.2开始,loadstring已被 load取代.

从Lua 5.2 reference manual开始:

Function loadstring is deprecated. Use load instead; it now accepts string arguments and are exactly equivalent to loadstring.

网友评论