我必须创建一个Matrix类,我有一些问题需要重载运算符
我想使用<<
运算符填充矩阵
Matrix<double> u3(2,2);
u3 << 3.3, 4, 3, 6;
template<class T>
Matrix<T> Matrix<T>::operator <<(T in){
//Fill up the matrix, m[0] = 3.3, m[1]=4...
return *this;
}
这个运算符如何重载?
答案 0 :(得分:3)
这是一种使用逗号的方法:
#include <iostream>
using namespace std;
struct Matrix {
struct Adder {
Matrix& m;
int index;
Adder(Matrix& m) : m(m), index(1) {}
Adder& operator,(float value) {
m.set(index++, value);
return *this;
}
};
void set(int index, float value) {
// Assign value to position `index` here.
// I'm just printing stuff to show you what would happen...
cout << "Matrix[" << index << "] = " << value << endl;
}
Adder operator<<(float value) {
set(0, value);
return Adder(*this);
}
};
一些解释:
语法matrix << 5, 10, 15, 20
分两步完成:
matrix << 5
;它将第一个元素设置为5并返回一个临时Adder
对象,该对象处理进一步的插入(记住下一个插入的索引)Adder
重载operator,
,在每个逗号后执行以下插入。答案 1 :(得分:1)
这样的方法可行:
#include <iostream>
template <typename T>
class Mat {
public:
T val;
};
template <typename T>
Mat<T>& operator<<(Mat<T>& v, T in) {
std::cout << in << " ";
return v;
}
int main() {
Mat<int> m;
m << 1 << 2 << 3;
}
请注意,我使用的是免费的operator<<
函数,并且不要在值之间使用逗号。