luaL_dostring puts nothing on the stack?

跟風遠走 提交于 2019-12-01 21:06:13

问题


I'm trying to learn the basics of interfacing Lua with C++, but I've run into a problem. I want to call a function that returns a string, and then work with the string on the C++ side, but luaL_dostring seems to put nothing on the Lua stack.

Even a simple test doesn't seem to work properly:

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;

Output:

stack top is 0
stack top is 1

Any ideas?


回答1:


Aha, found the problem. According to this page, in Lua 5.1 luaL_dostring ignores returns. The code I had would probably work in Lua 5.2.

To alter the functionality, you should use:

#undef luaL_dostring
#define luaL_dostring(L,s)  \
    (luaL_loadstring(L, s) || lua_pcall(L, 0, LUA_MULTRET, 0))


来源:https://stackoverflow.com/questions/12528820/lual-dostring-puts-nothing-on-the-stack

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!