我有一个类的模板,其行为类似于矩阵。所以用例是这样的:
Matrix matrix(10,10);
matrix[0][0]=4;
//set the values for the rest of the matrix
cout<<matrix[1][2]<<endl;
当我直接在构造函数中设置值时,效果很好,但是当我想使用时,matrix[x][y]=z;
我得到error: lvalue required as left operand of assignment
. 我假设,我必须重载=
运算符。尽管如此,我整个晚上都尝试了,但我没有找到如何实现它。有人会这么好心并告诉我如何=
为我的代码重载运算符,使其为该矩阵分配值吗?
代码:
#include <iostream>
#include <cstdlib>
#include <cstdio>
#include <cstring>
#include <sstream>
using namespace std;
class Matrix {
public:
Matrix(int x,int y) {
_arrayofarrays = new int*[x];
for (int i = 0; i < x; ++i)
_arrayofarrays[i] = new int[y];
// works here
_arrayofarrays[3][4] = 5;
}
class Proxy {
public:
Proxy(int* _array) : _array(_array) {
}
int operator[](int index) {
return _array[index];
}
private:
int* _array;
};
Proxy operator[](int index) {
return Proxy(_arrayofarrays[index]);
}
private:
int** _arrayofarrays;
};
int main() {
Matrix matrix(5,5);
// doesn't work :-S
// matrix[2][1]=0;
cout << matrix[3][4] << endl;
}