マトリックスのように動作するクラスのテンプレートがあります。したがって、ユースケースは次のようなものです。
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;
}