我正在尝试学习将 Lua 与 C++ 接口的基础知识,但我遇到了一个问题。我想调用一个返回字符串的函数,然后在 C++ 端使用该字符串,但 luaL_dostring 似乎什么都没有放在 Lua 堆栈上。
即使是一个简单的测试似乎也无法正常工作:
lua_State* lua = lua_open();
luaL_openlibs(lua);
//Test dostring.
luaL_dostring(lua, "return 'derp'");
int top = lua_gettop(lua);
cout << "stack top is " <<top << endl;
//Next, test pushstring.
lua_pushstring(lua, "derp");
top = lua_gettop(lua);
cout << "stack top is " << top << endl;
输出:
stack top is 0
stack top is 1
有任何想法吗?