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.
我目前正在使用 C API 调用luaL_loadstring()来加载一个块,但是这个调用没有命名该块的方法。
luaL_loadstring()
有没有办法在加载后命名一个块?
或者,我看到该lua_load()函数采用了一个 chunkname 参数,但我没有找到任何如何使用它的示例:如何将luaL_loadstring()调用替换为lua_load()?
lua_load()
使用luaL_loadbuffer(L,s,strlen(s),name).
luaL_loadbuffer(L,s,strlen(s),name)