如何在c中调用lua运算符?

时间:2015-11-24 08:27:14

标签: c lua lua-api

以下示例显示了c程序如何执行与Lua代码等效的操作:

a = f(t)

这是在C:

lua_getglobal(L, "f");    // function to be called
lua_getglobal(L, "t");    // 1 argument
lua_call(L, 1, 1);        // call "f" with 1 argument and 1 result
lua_setglobal(L, "a");    // set "a"

那么,以下Lua代码的等效C代码是什么?

a = t + 1

由于我们没有关于t的信息,我们应该在c代码中调用基础+运算符,但是如何?

1 个答案:

答案 0 :(得分:1)

lua_getglobal(L, "t");
lua_pushinteger(L, 1);
lua_arith(L, LUA_OPADD);
lua_setglobal(L, "a");