这是代码。目的是打印消息。
在PrintC中,我想获取e ...但是作为cdata到达。我该如何拆开包装或规避呢?

extern "C"
{
    static int PrintC ( lua_State *L )
    {


         // does not work cdata
        //executor* e = ( executor* ) luaL_checkudata(L, 1, "cdata"); does n




        //luaL_checkudata(L, 1, "void *");

        if ( e->writelog )
        {
            int no = lua_gettop ( L ) ;

            for ( int i = 2; i <= no; i++ )
            {
                cout << lua_tostring (L,i);
            }


        }
        return 1;
    }

}




// initialised as
lua_pushcfunction ( L, PrintC );
lua_setglobal ( L, "PrintC" );
lua_pushinteger ( L, ( long ) this ); // this is in a class executor
lua_setglobal ( L, "p" );




p= ffi.cast("void *",p)
function   Print()
   return  PrintC(p)
end

最佳答案

你不能Lua C API和LuaJIT FFI故意分开并且不能交互。

使用FFI在Lua中重写PrintC,或将Lua C API绑定写入正在使用p的库。即使用一个或另一个。

07-26 09:29