本文主要是介绍lua脚本语言的学习-----------------如何实现c++无参数的函数在lua中调用,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在c++和lua的交互过程中,经常会遇到lua中要调用c++里面的函数接口。那么如何去调用c++中的函数呢?
具体步骤如下:
1.定义c++函数接口
2.定义lua函数接口(必须以C风格导出)
3.注册lua函数
4.执行lua函数
这样就可以实现在lua中使用c++的函数了
具体使用的源码如下:
// Lua_HelloWorld.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include<process.h>
#include <iostream>
using namespace std;
extern "C"{
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}//c++函数
int func(){cout << "this is func in c++"<<endl;return 1;
}//lua函数接口,以为lua是c格式的,所以需要导出c
extern "C" int funcLua(lua_State* L){return func();
}int _tmain(int argc, _TCHAR* argv[])
{lua_State *L = luaL_newstate(); //创建lua指针luaL_openlibs(L); //关联lua指针lua_register(L, "Lua_func", funcLua); //注册lua函数luaL_dostring(L, "Lua_func()"); //通过字串的形式来执行lua函数luaL_dofile(L, "test.lua"); //打开lua文件lua_close(L); //关闭lua文件system("pause");return 0;
}
这篇关于lua脚本语言的学习-----------------如何实现c++无参数的函数在lua中调用的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!