5

我正在尝试从类中导出静态字段:

class Foo
{
   const static int Var;
};

// luabind module:
.def_readonly("Var", &Foo::Var);
// I've also tried
.def_readonly("Var", Foo::Var);
 error: no matching function for call to ‘luabind::class_<Foo>::def_readonly(const char [6], const Foo&)’
 note: template<class C, class D> luabind::class_& luabind::class_::def_readwrite(const char*, D C::*)

我错过了什么?

4

1 回答 1

3

正如文档中明确指出的那样,静态函数(除其他外)不能作为成员添加。它们必须被限定在一个特殊的.scope结构中。

class_<foo>("foo")
    .def(constructor<>())
    .scope
    [
        class_<inner>("nested"),
        def("f", &f)
    ];

我不知道非成员函数版本是否defreadonly变量版本,但它可能。如果没有,那么您必须将其公开为返回值的函数。

于 2012-02-26T08:43:08.460 回答