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++ 传递一个 Lua 脚本(Lua 解释器可以处理的代码)并返回结果。
我在网上查看,但找不到任何对我有帮助的例子。我可以从 C++ 调用 Lua 函数,但这需要您使用 Lua 函数创建一个文件。
尝试使用luaL_dostring,它加载并运行给定的字符串。