c api lua互相调用

这篇博客介绍了如何在C语言中实现lua_tonumber和lua_pushnumber等API来调用及注册 Lua 函数,并展示了在Lua中调用C函数的示例。通过main函数和test_cfun函数,文章展示了C调用Lua函数的过程,同时在Lua脚本中定义了test_luafun函数,该函数调用了C中注册的test_cfun,实现了双向交互。
摘要由CSDN通过智能技术生成

C:

static int test_cfun(lua_State *L)

{

double d = lua_tonumber(L, 1);

lua_pushnumber(L, d);

return 1;

}

int main (void) {

int z; lua_State *L = lua_open();

lua_pushcfunction(L,test_cfun);

lua_setglobal(L, "test_cfun");

luaL_openlibs(L);

if (luaL_loadfile(L, "c.lua") || lua_pcall(L, 0, 0, 0))

printf("cannot run file: "); lua_tostring(L, -1);

lua_getglobal(L, "test_luafun");

lua_pushnumber(L, 2);

if (lua_pcall(L, 1, 1, 0) != 0)

printf( "error running function `f': ");

printf( "%s/n", lua_tostring(L, -1));

lua_close(L); return 0;

}

LUA:

function test_luafun(t)

return 'from lua:'..t..'|from c:'..test_cfun(33)

end

实现了lua与c的简单调用

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值