Lua学习笔记6:C++和Lua的相互调用
extern "C"
{
#include "lualib/lua.h"
#include "lualib/lualib.h"
#include "lualib/lauxlib.h"
}
using namespace std;
int main()
{
lua_State* L = luaL_newstate() ;
luaopen_base(L) ;// 不知道为什么这里使用luaL_openlibs(L)会报错
luaL_dofile(L, "script/test.lua") ;
lua_getglobal(L, "add") ;
lua_pushnumber(L, 1) ;
lua_pushnumber(L, 2) ;
lua_pcall(L, 2, 1, 0) ;
int sum = (int)lua_tonumber(L, -1) ;
lua_pop(L, -1) ;
lua_close(L) ;
cout << "1 + 2 = " << sum << endl;
return 0 ;
}
return x + y
end
extern "C"
{
#include "lualib/lua.h"
#include "lualib/lualib.h"
#include "lualib/lauxlib.h"
}
using namespace std;
lua_State* L ;
static int average(lua_State *L)
{
// num of args
int n = lua_gettop(L) ;
double sum = 0 ;
int i = 0 ;
for ( i = 1; i <= n; ++i)
{
sum += lua_tonumber(L, i) ;
}
// push the average
lua_pushnumber(L, sum / n) ;
// push the sum
lua_pushnumber(L, sum) ;
return 2;
}
int main()
{
L = luaL_newstate() ;
luaopen_base(L) ;
// register function
lua_register(L, "average", average) ;
luaL_dofile(L, "test.lua") ;
lua_close(L) ;
return 0 ;
}
print ("The average is ", avg)
print ("The sum is ", sum)
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。