2

我正在将 Lua 集成到 C++ 中,现在我有了这个充当“类”的表,对于某些函数,它需要一个“自我”参数,实际上就是表。Lua代码:

a = {
numb = 5,

create = function(a)
    print(a);
end,

increment = function(self)
                            --self.numb = 6;
                            print(self.numb);
end,

decrement = function(self,i)
                            self.numb = self.numb-i;
                            print(self.numb);
end
};
b = a;

以及调用函数的 C++ 位(我让 Lua 在 C++ 中运行)

luaL_openlibs(L);

luaL_dofile (L,"main.lua");

lua_getglobal(L, "a");
lua_getfield(L, -1, "increment");

string arg = "a";

lua_pushliteral(L,"a");

lua_pcall(L ,1,0,0);

printf(" \nI am done with Lua in C++.\n");

lua_close(L);

那么,如何将 self 参数作为表格传递给函数增量?

任何帮助表示赞赏

4

1 回答 1

2

在 Lua 5.1 中,你曾经lua_getglobal,嗯,得到一个全局的,比如你的表a——你正在使用它来获取你的表,就在上面几行;您需要做的就是复制该值以将其传递给您的函数

 lua_getglobal(L, "a"); // the table a is now on the stack
 lua_getfield(L, -1, "increment"); // followed by the value of a.increment

 lua_pushvalue(L,-2); // get the table a as the argument

 lua_pcall(L,1,0,0);
于 2012-06-27T20:27:50.737 回答