Link to home
Start Free TrialLog in
Avatar of GEliyahu
GEliyahu

asked on

operator[][]

Say u have a class A and a class B and class C;
class A{
public:
   int i;
   .......
   class B{
   int j;  
   class C{
   int  array [200];

  }cObj;
   }bObj[100];

operator[][](int one,int two)
{
   return bObj[one].cObj.array[two];
}
}aObj[50];
main()
{
///This is the code that i wants to write...
aObj[7][8] = 5;
}

How can i define the operator[][]??
Avatar of hustch
hustch

You can't define operator[][], because there is no such operator in C++.

But you can get the effect you want this way.

1) Define A::operator[] to return a reference to a B object
2) Define B::operator[] to return a reference to an item in C::array.

I don't know if it will work with nested classes.
Avatar of GEliyahu

ASKER

Not such operator in C++??
What about the follow code:

int a[6][9];

a[5][3] = 3;

if this legal why cant i do a thing like that?

GEliyahu.
'[][]' are _two_ concatenated operators. Given your example:

   int a[6][9]; // array of arrays of ints.

   a[5]         // 6th element of a == array of 9 ints

       [3]      // 4th element a[5] == int

kind regards,

Jos
Not such operator in C++??
What about the follow code:

int a[6][9];

a[5][3] = 3;

if this legal why cant i do a thing like that?

GEliyahu.
As Jos says, it is legal, but it isn't operator[][], but two times operator[].

The first one returns an array of ints (because a is an array of arrays of int) and the second one returns an int.

What you should do is just the same.
What you got is (in principle) an array of arrays of ...

Each time you define a operator[] you remove one of the "array of", and you just repeat that until there are no more "array of"'s left.
Not clear to me how i am gonna write it.
can you please use my example with classes A,B,C to demonstrate me please?

GEliyahu.
Here it is:
There is only a few changes,
1) added public: to B and C
2) changed operator[][] to two oprerator[]
3) changed aObj[7][8] to aObj[6][7][8] because there are three arrays.

The first index ([6]) selects your aObj. This uses built-in array handling
The second index ([7]) selects your bObj. This uses B& operator[](int ix)
The third index ([8]) selects your array element this uses int& operator[](int ix)

You can see this if you step into the functions with a debugger.

class A{
public:
  int i;
 
  class B{
  public:
    int j;  
    class C{
    public:
      int  array [200];
    }cObj;
   
    int& operator[](int ix) {
      return cObj.array[ix];
    };
   
  }bObj[100];
 
  B& operator[](int ix)
  {
    return bObj[ix];
  }
 
}aObj[50];



void Test() {
  aObj[6][7][8] = 5;

}
the public: in B can be moved down before int& operator[](int ix)
a[i][j][k]   =>   a.operator[](i).operator[](j).operator[k]

and it is legal for int a[5][6][7] because the type of a[3] is (int)[6][7]

One of the possible solutions can be:

===================================================
class A_ref
{
public:
  int& operator[](int i) {return *(rowStart + i};
  int* rowStart;
};

class A
{
public:
  A_ref operator[](int i);
  int arr[ARR_SIZE];
  int rowSize;
};

A_ref A::operator[](int i)
{
A_ref ar;
ar.rowStart = (arr + i*rowSize);
return ar;
}
========================================
With such implementation you don't have arrays of nested classes.
a[i][j][k]   =>   a.operator[](i).operator[](j).operator[k]

and it is legal for int a[5][6][7] because the type of a[3] is (int)[6][7]

One of the possible solutions can be:

===================================================
class A_ref
{
public:
  int& operator[](int i) {return *(rowStart + i};
  int* rowStart;
};

class A
{
public:
  A_ref operator[](int i);
  int arr[ARR_SIZE];
  int rowSize;
};

A_ref A::operator[](int i)
{
A_ref ar;
ar.rowStart = (arr + i*rowSize);
return ar;
}
========================================
With such implementation you don't have arrays of nested classes.
Also, you might like to think about using a(1,2)instead of a[1][2].

The best way to do this is with the operator that is meant for exactly this sitiuation: operator().  You can put any number of arguments in there.  Yes, you can piggy-back operator[] and in some cases that is fine, but in many cases the result of the first operator[] is not something you want to return, though you are forced to in order to support the operator[] applied to that returned value.

So, if you decide that you like the idea of using operator(), which would look like:

  value = object(1, 2);

instead of:

  value = object[1,2];

then explore the documentation on this operator and ask for further guidance as needed.

~Lockias
Hi Lockias.

You are right, in most cases operator() is prefferable. But there are some situations where you need multiple operator[]. For example when you don't know number of dimensions at the moment you write your class or when you need access to one element as well as to whole subdimension(Implementation of template for n-dimensional matrix).

Also, in the given example you would end up with code like
a[2](5,3) = 3;
Which is why i didn't suggest it in the first place.
Otherwise I agree, that you should at least consider operator() in your design.
ASKER CERTIFIED SOLUTION
Avatar of IainHere
IainHere

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial