有没有办法可以在C ++中使用“/”运算符重载增强矢量?
#include <boost/assign.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/operations.hpp>
#include <boost/numeric/ublas/assignment.hpp>
namespace ublas = boost::numeric::ublas;
using namespace boost::assign;
template <typename T, typename U>
ublas::vector<T> operator/(U& var)
{
// do something here
return *this;
}
我看到的错误就像 重载'operator /'必须是二元运算符(有1个参数)
答案 0 :(得分:2)
你需要的是:
#include <boost/assign.hpp>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/operations.hpp>
#include <boost/numeric/ublas/assignment.hpp>
namespace ublas = boost::numeric::ublas;
using namespace boost::assign;
template <typename T, typename U>
ublas::vector<T> operator/(ublas::vector<T> v, U& var)
{
// your logic for /
return v;
}
int main()
{
ublas::vector<int> v1;
auto v2 = v1 / 2;
return 0;
}
答案 1 :(得分:1)
你拥有的运算符函数是一个独立的函数,而不是一个类的成员,因此它需要两个应该处理的对象的参数,因为它不是一个类成员,它没有this
任