共享全局变量

发布于 2024-12-19 11:06:16 字数 86 浏览 0 评论 0原文

如何在两个不同的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软糯酥胸 2024-12-26 11:06:16

您无法直接与另一个 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 between lua_States 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文