Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i write matrix class in c++ and overloaded some operator like = and >> and << ,... but i can't overloading operator [][] for matrix class. if i have an object of class matrix like M1 then i can use this way for giving value to each element:

M1[1][2]=5;

OR

int X;

X=M1[4][5];
share|improve this question

5 Answers

Just overload operator[] and make it return a pointer to the respective row or column of the matrix. Since pointers support subscripting by [], access by the 'double-square' notation [][] is possible then.

You can also overload operator() with two arguments.

share|improve this answer
I prefer RedX's solution over this one because in my opinion you should not use pointers in C++ unless you absolutely have to. – Björn Pollex Apr 12 '11 at 14:56
5  
I find that operator(x,y) is a good solution in such circumstances. – edA-qa mort-ora-y Apr 12 '11 at 14:59

There is no operator[][] in C++. You have to return a helper object and then overload operator[] for that too, to have this kind of access.

share|improve this answer

You could overload operator[]. So if you would like to use matrix that way, you should make matrix as array of vectors.

class Matrix
{
...
  Vector & operator[]( int index );
...
};

and

class Vector
{
...
  double & operator[]( int index );
...
};

Finally:

Matrix m;
...
double value = m[i][j];
...
share|improve this answer

there is no operator[][], you can implement operator[] to return a reference to the row/column object, in which you can implement the operator[] to return you the cell reference.

You can do something like the following to avoid all that hassle..

struct loc
{
  int x;
  int y;
};

then in your operator[] overload, accept a loc, something like

T& operator[](loc const& cLoc)
{
 // now you have x/y you can return the object there.
}

To call, you can simply do something like:

matrix[loc(2,3)] = 5; 
share|improve this answer

You can't overload [][] as such, since there isn't such an operator. You can overload [] to return something which also has an [] defined on it (a proxy); in the simplest case, something like a double* will work, but it's usually better, although a bit more work, to use a full class. (Place to add bounds checking, for example.)

Alternatively, you can overload (x,y). Depending on who you ask, one format or the other is "better". (In fact, it's strictly a question of style.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.