我试图从 lua 脚本调用 c 方法 my_sin。我正在使用 lua 5.2.2 并想测试使用 luaL_newlib 而不是 lua_register。不幸的是,lua 脚本没有找到 mysin。
extern "C" {
#include "lua.h"
#include "lauxlib.h"
#include "lualib.h"
}
#include <cmath>
static int my_sin (lua_State *L) {
lua_pushnumber(L, sin(luaL_checknumber(L, 1)));
return 1;
}
static const luaL_Reg my_lib[] = {
{"mysin", my_sin},
{NULL, NULL}
};
int my_open(lua_State *L) {
luaL_newlib(L, my_lib);
return 1;
}
int main() {
lua_State* L = luaL_newstate();
luaL_openlibs(L);
my_open(L);
luaL_dostring(L, "print(mysin(2))");
lua_close(L);
return 0;
}