been stuck at this for a while. I have a mathlibrary with a 3x3 matrix class. It used to be dynamic , using a pointer and allocating memory of creation. But as its always gonna be 3x3 I decided to change it, but now I cant use [][] to get values of my array. I am using a proxy class!
class mat3 {
private:
double arr[3][3];
public:
mat3();
mat3(double, double, double, double, double,
double, double, double, double);
//Proxy class
class Proxy {
private:
double arr[3];
public:
Proxy(const double _arr[3]) { arr = _arr; }
double& operator[] (const int index) {
return arr[index];
}
const double& operator[] (const int index) const{
return arr[index];
}
};
const Proxy operator[] (const int index) const{
return Proxy(arr[index]);
}
Proxy operator[] (const int index) {
return Proxy(arr[index]);
}
Now where arr = _arr i get a compiler error: Error: Expression must be a modifiable Ivalue
What am I doing wrong? How am I suposed to achieve this?
When you pass an array as a parameter, it gets converted to a pointer, so your constructor is the same as
Proxy(const double *_arr) { arr = _arr; }
and that's illegal.Besides, you want to return a reference to the original values in mat3. So change Proxy to use a pointer to double instead: