我的luabind
v0.9.1与g ++ 4.7(--std=c++11
)和Boost 1.51有一个非常微妙的问题,可以在以下代码中复制:
#include <exception>
#include <iostream>
#include <string>
#include <lua.hpp>
#include <luabind/luabind.hpp>
struct TestObject
{
int x = 0;
int increment()
{
return ++x;
}
};
static void luaError(lua_State* stack, const std::string& luaCode, int luaErr)
{
std::cerr << "Failed with code " << luaErr << ": " << std::endl
<< "LuaCode: " << luaCode << std::endl
<< "Message: " << lua_tostring(stack, -1) << std::endl;
std::terminate();
}
void luaExec(lua_State* stack, const std::string& luaCode)
{
if (int excode = luaL_loadbuffer(stack, luaCode.c_str(), luaCode.size(), "luaExec"))
luaError(stack, luaCode, excode);
if (int excode = lua_pcall(stack, 0, 0, 0))
luaError(stack, luaCode, excode);
}
int main()
{
using namespace luabind;
lua_State* L = luaL_newstate();
open(L);
module(L)
[
class_<TestObject>("TestObject")
.def(constructor<>())
.def("increment", &TestObject::increment)
.property("x", &TestObject::x)
];
luaExec(L, "obj = TestObject()");
luaExec(L, "obj.increment()");
}
编译并执行此代码会导致:
Failed with code 2:
LuaCode: obj.increment()
Message: No matching overload found, candidates:
int increment(TestObject&)
但是,如果我将第二次调用luaExec
更改为luaExec(L, "obj.increment(obj)");
,则代码执行得很好。这种行为很奇怪。我在这里做错了什么?
答案 0 :(得分:0)
在使用luabind绑定的对象上调用方法需要使用 object:method(arg1,arg2,...)语法进行调用。这是 object.method(object,arg1,arg2,....)的语义糖。这会调用正确的方法(对象),并传入正确的数据成员(对象)。有关直接在lua中构建类的更多信息,请参阅http://lua-users.org/wiki/SimpleLuaClasses:这将通知与luabind绑定的类。