Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是一个非常简单的问题,但它有问题。所以就这样吧。
使用 lua_newthread C API 方法创建的每个新 Lua 状态是否都可以通过新创建的 Lua 状态访问它自己的单独的 LUA_REGISTRYINDEX,还是使用全局共享的 LUA_REGISTRYINDEX?
相同 Lua 状态的所有线程共享一个注册表,如源代码所示。
不同的 Lua 状态有不同的注册表。