我在使用Boost.Python lib将抽象类暴露给python时遇到了一些问题。我正在使用1_53_0 boost和Python 33。
有一个与此问题相关的类似线程。 (How can I implement a C++ class in Python, to be called by C++?)我正在关注eudoxos响应,他在抽象类Base周围创建了一个包装器,它有一个返回字符串类型的方法。
我正在做类似的事情,但我不断收到编译错误:
以上错误与该行有关:
return this->get_override("getName")();
从下面的例子中可以看出:
#include <string>
#include "boost/python.hpp"
class Person {
public:
virtual std::string getName() { return "Base"; };
virtual void setName(std::string name) {};
};
class PersonWrap : public Person, public boost::python::wrapper<Person>
{
public:
std::string getName()
{
return this->get_override("getName")();
}
void setName(std::string name)
{
this->get_override("setName")();
}
};
class Student : public Person {
public:
std::string getName() { return myName; };
void setName(std::string name) { myName = name; };
std::string myName;
};
BOOST_PYTHON_MODULE(example)
{
boost::python::class_<PersonWrap, boost::noncopyable>("Person")
.def("getName", (&Person::getName))
.def("setName", (&Person::setName))
;
boost::python::class_<Student, boost::python::bases<Person>>("Student")
.def("getName", (&Student::getName))
.def("setName", (&Student::setName))
;
}
感谢任何评论,提前感谢!
答案 0 :(得分:2)
我找到了解决这个问题的方法,它的工作原理如下:
std::string getName()
{
//return this->get_override("getName")();
return boost::python::call<std::string>(this->get_override("getName")());
}
然而,根据the boost python documentation,这只能用于MSVC6 / 7,因为我使用的是VS2010(MSVC 10.0),所以不是我的情况。