1

この質問で説明されているように、印刷機能を再定義しようとしています。これが私のコードです:

extern "C"{
#include <lua.h>
#include <lauxlib.h>
#include <lualib.h>
}

#include <iostream>

using namespace std;

lua_State* L;

static int l_my_print(lua_State* L) {
    int nargs = lua_gettop(L);

    for (int i=1; i <= nargs; i++) {
        if (lua_isstring(L, i)) {
            cout << "!!!" << lua_tostring(L, i) << "!!!" << endl;
        }
    }

    return 0;
}

static const struct luaL_Reg printlib [] = {
  {"print", l_my_print},
  {NULL, NULL} /* end of array */
};

extern int luaopen_luamylib(lua_State *L)
{
  lua_getglobal(L, "_G");
  luaL_register(L, NULL, printlib);
  lua_pop(L, 1);
}


int main(){
    L = luaL_newstate();
    luaL_openlibs(L);
    luaopen_luamylib(L);

    luaL_dostring(L, "print(\"hello\")");

    lua_close(L);

    return 0;
}

コードをコンパイルしようとすると、次のようになります。

$ g++ -I/usr/include/lua5.2 -o embed test.cpp -Wall -Wextra -llua5.2
test.cpp:28:1: error: elements of array ‘const luaL_reg printlib []’ have incomplete type
test.cpp:28:1: error: storage size of ‘printlib’ isn’t known
test.cpp: In function ‘int luaopen_luamylib(lua_State*)’:
test.cpp:33:34: error: ‘luaL_register’ was not declared in this scope
test.cpp:35:1: warning: no return statement in function returning non-void [-Wreturn-type]

誰かがここで何が起こっているのか説明できますか?図書館か何かが足りませんか?

アップデート

luaL_Reg構造体はではなく、と呼ばれることが指摘されましたluaL_reg。これは私の最初の問題を解決しました:

$ g++ -I/usr/include/lua5.2 -o embed test.cpp -Wall -Wextra -llua5.2
test.cpp: In function ‘int luaopen_luamylib(lua_State*)’:
test.cpp:33:34: error: ‘luaL_register’ was not declared in this scope
test.cpp:35:1: warning: no return statement in function returning non-void [-Wreturn-type]
4

1 に答える 1

4

最初のエラー:luaL_Regではなく、luaL_regです。

2番目のエラー:luaL_registerは非推奨になり(Lua 5.2で)、Luaヘッダーを含める前にLUA_COMPAT_MODULEが定義されている場合にのみ使用できます。代わりにluaL_setfuncsを使用する必要があります。

于 2012-09-12T14:41:56.103 に答える