在C++中使用Lua通常需要以下步骤:
extern "C" {
#include "lua.h"
#include "lualib.h"
#include "lauxlib.h"
}
lua_State *L = luaL_newstate();
luaL_openlibs(L);
luaL_dostring(L, "print('Hello from Lua!')");
lua_getglobal(L, "myFunction");
lua_pushnumber(L, 42);
lua_pcall(L, 1, 0, 0);
void myFunction(lua_State *L) {
int arg1 = lua_tonumber(L, 1);
int result = arg1 * 2;
lua_pushnumber(L, result);
return 1;
}
lua_close(L);
以上是一些基本的用法,更详细的用法可以参考Lua官方文档和示例代码。