4

我正在尝试学习将 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

有任何想法吗?

4

1 回答 1

12

啊哈,发现问题了。根据this page,在Lua 5.1 luaL_dostring 忽略返回。我的代码可能会在 Lua 5.2 中工作。

要更改功能,您应该使用:

#undef luaL_dostring
#define luaL_dostring(L,s)  \
    (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))
于 2012-09-21T11:36:33.313 回答