我正在尝试使用Boost.Python重载C++类的运算符。
根据this的说法,我做的正确。。。但是我有很多编译器错误。
这是我尝试找出问题的简单示例:
#include "boost/python.hpp"
using namespace boost::python;
class number
{
public:
number(int i) : m_Number(i) { }
number operator+(int i) { return number(m_Number + i); }
private:
int m_Number;
};
BOOST_PYTHON_MODULE(test)
{
class_<number>("number", init<int>())
.def(self() + int());
}
以下是编译器错误:
Error 1 error C2064: term does not evaluate to a function taking 0 arguments c:\users\kevin\documents\visual studio 2008\projects\boostpythontest\boostpythontest\test.cpp 16 BoostPythonTest
Error 2 error C2780: 'boost::python::class_<W> &boost::python::class_<W>::def(const char *,Fn,const A1 &,const A2 &,const A3 &)' : expects 5 arguments - 1 provided c:\users\kevin\documents\visual studio 2008\projects\boostpythontest\boostpythontest\test.cpp 16 BoostPythonTest
Error 3 error C2780: 'boost::python::class_<W> &boost::python::class_<W>::def(const char *,Fn,const A1 &,const A2 &)' : expects 4 arguments - 1 provided c:\users\kevin\documents\visual studio 2008\projects\boostpythontest\boostpythontest\test.cpp 16 BoostPythonTest
Error 4 error C2780: 'boost::python::class_<W> &boost::python::class_<W>::def(const char *,A1,const A2 &)' : expects 3 arguments - 1 provided c:\users\kevin\documents\visual studio 2008\projects\boostpythontest\boostpythontest\test.cpp 16 BoostPythonTest
Error 5 error C2780: 'boost::python::class_<W> &boost::python::class_<W>::def(const char *,F)' : expects 2 arguments - 1 provided c:\users\kevin\documents\visual studio 2008\projects\boostpythontest\boostpythontest\test.cpp 16 BoostPythonTest
我在这里想念什么吗?
谢谢
最佳答案
我没有使用boost.python,但是当某些模板魔术试图将某些东西绑定(bind)到其他东西时,您的错误看起来像是一些不兼容的参数。
因此,我查看了您提供的链接,发现其中一个主要区别:
class_<X>("X")
.def(self + int())
与你的
class_<number>("number", init<int>())
.def(self() + int());
我想
self
和self()
可以做到这一点。关于c++ - 如何使用Boost.Python重载运算符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/1397110/