共享全局变量
如何在两个不同的lua_state之间共享全局变量?
lua_state 不能用 lua_newthread 创建。
请帮忙
How to share global variables between two different lua_state?
The lua_state can not be created with lua_newthread.
Help please
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接与另一个 lua_State 共享组件。 lua_State 之间唯一的交叉连接是通过一些 C 或 C++ 代码的干预。您可以在多个状态下注册相同的函数,从而从两个状态访问相同的资源。但你必须通过函数和 C/C++/etc 对象来完成,而不是直接通过 Lua。
You cannot directly share components from one
lua_State
with another. The only cross connection you can have betweenlua_State
s is via the intervention of some C or C++ code. You can register the same function in multiple states, and thereby access the same resource from both. But you have to do it through functions and C/C++/etc objects, not directly through Lua.