472,126 Members | 1,554 Online
Bytes | Software Development & Data Engineering Community
Post +

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,126 software developers and data experts.

Help on operator overload for something like matrix(row)(col)

Hello. I am trying to learn how operator overloading works so I wrote
a simple class to help me practice. I understand the basic opertoar
overload like + - / *, but when I try to overload more complex
operator, I get stuck.

Here's a brief description what I want to do. I want to simulate a
matrix (2D array) from a 1D array. so what I have so far is something
like this:

class Matrix
{
private:
int row, int col;
double *array_d;
public:
~Matirx()
Matrix(int r, int col); // array_d[row * col]
double operator()(int r, int c); // matrix(2,2) =
array_d[some_index]
};

Here is where I get stuck:

1. So far my class can handle something like: doube temp =
matrix(2,3)
But I want the reverse to work: matrix(2,3) = temp;
I try to expand the my operator function:
matrix(i,j) = temp => matrix(i,j).operator=(temp) =>
matrix.operator(i,j).operator=(temp)

but matrix.operator(i,j) = a double value
so [double].operator=(temp)

Do I overload my '=' operator to be something like this:

friend operator=( double val_a, double val_b)

I don't think that's right.

2. My second problem is that I want matrix(i)(j) syntax instead of
matrix(i,j) to return a double. I am think matrix(i)(j) should
be allowed because we can use things like any_2d_array[i][j].
I expand my function (I don't think it's right):

temp = matrix(i)(j)
=> temp = matrix.operator()(i, matrix::operator()(j))

or
=> operator().(matrix(i), j)
=> operator().( matrix.operator()(i), j)

friend double operator()( matrix::operator()(i), j) =>
friend double operator()( int (Matrix::*ptr)(int i), j)

----End of questions---
Here's the code I have so far:

//START
include<iostream>
using namespace std;

class Matrix
{
private:
int row, col;
double *array_d;
int (Matrix::*ptr)(int c);//function pointer for operator()(int c)
public:
Matrix(){ array_d = NULL; }
~Matrix(){ delete [] array_d; }
Matrix(int r, int c)
{
row = r; col = c;
array_d = new double[row * col];
int i = 0;
for(i = 0; i<row*col;i++) array_d[i] = i;

ptr = &Matrix::operator(); //assign function pointer
}
int operator()(int c)
{
return c;
}
// matrix(2,3) return a double => I want matrix(2)(3)
double operator()(int r, int c)
{
if((r * col + c) < row*col)
return array_d[r * col + c];
else
return 0.0;
}
//I want something like matrix(3)(4) to return a double
/*
matrix(i)(j) => operator()(matrix::operator()(i), j)
friend double operator()(int (*ptr)(int c), int d)
{
cout<<"I got to here"<<endl;

}

*/
};
int main()
{
Matrix matrix(10,10);
cout<<matrix(3,3); //it's fine
// matrix(3,3) = 123.4;
// cout<< matrix(3)(3);
return 0;
}
//END
Jul 22 '05 #1
5 3667

"Jason" <ni********@yahoo.com> wrote in message
news:de**************************@posting.google.c om...
Hello. I am trying to learn how operator overloading works so I wrote
a simple class to help me practice. I understand the basic opertoar
overload like + - / *, but when I try to overload more complex
operator, I get stuck.

Here's a brief description what I want to do. I want to simulate a
matrix (2D array) from a 1D array. so what I have so far is something
like this:

class Matrix
{
private:
int row, int col;
double *array_d;
public:
~Matirx()
Matrix(int r, int col); // array_d[row * col]
double operator()(int r, int c); // matrix(2,2) =
array_d[some_index]
};

Here is where I get stuck:

1. So far my class can handle something like: doube temp =
matrix(2,3)
But I want the reverse to work: matrix(2,3) = temp;
I try to expand the my operator function:
matrix(i,j) = temp => matrix(i,j).operator=(temp) =>
matrix.operator(i,j).operator=(temp)

but matrix.operator(i,j) = a double value
so [double].operator=(temp)

Do I overload my '=' operator to be something like this:

friend operator=( double val_a, double val_b)

I don't think that's right.
No, you have to define

double& operator()(int r, int c);

because you return a reference, you can use on the lhs of assignment.


2. My second problem is that I want matrix(i)(j) syntax instead of
matrix(i,j) to return a double. I am think matrix(i)(j) should
be allowed because we can use things like any_2d_array[i][j].
I expand my function (I don't think it's right):


Now matrix(i)(j) is the same as

matrix.operator(i).operator(j)

So Matrix::operator() must return something for which another operator() is
valid. In other words Matrix::operator() must return a class which also has
operator() defined. Classes like this are called proxy classes. Like this

class Proxy
{
double& operator()(int j); // returns a reference
};

class Matrix
{
Proxy operator()(int i); // returns a proxy
};

I'll leave you too work out the details, will be a good learning exercise.

john
Jul 22 '05 #2
Jason wrote:
Hello. I am trying to learn how operator overloading works so I wrote
a simple class to help me practice. I understand the basic opertoar
overload like + - / *, but when I try to overload more complex
operator, I get stuck.

Here's a brief description what I want to do. I want to simulate a
matrix (2D array) from a 1D array. so what I have so far is something
like this:

class Matrix
{
private:
int row, int col;
double *array_d;
public:
~Matirx()
Matrix(int r, int col); // array_d[row * col]
double operator()(int r, int c); // matrix(2,2) =
array_d[some_index]
Should be:

double& operator()(int r, int c);
double operator()(int r, int c) const; };

Jul 22 '05 #3
Thanks for your help. I got my overloaded operators to work.
Jul 22 '05 #4

"John Harrison" <jo*************@hotmail.com> wrote in message
news:c0*************@ID-196037.news.uni-berlin.de...

"Jason" <ni********@yahoo.com> wrote in message
news:de**************************@posting.google.c om...
Hello. I am trying to learn how operator overloading works so I wrote
a simple class to help me practice. I understand the basic opertoar
overload like + - / *, but when I try to overload more complex
operator, I get stuck.

Here's a brief description what I want to do. I want to simulate a
matrix (2D array) from a 1D array. so what I have so far is something
like this:

class Matrix
{
private:
int row, int col;
double *array_d;
public:
~Matirx()
Matrix(int r, int col); // array_d[row * col]
double operator()(int r, int c); // matrix(2,2) =
array_d[some_index]
};

Here is where I get stuck:

1. So far my class can handle something like: doube temp =
matrix(2,3)
But I want the reverse to work: matrix(2,3) = temp;
I try to expand the my operator function:
matrix(i,j) = temp => matrix(i,j).operator=(temp) =>
matrix.operator(i,j).operator=(temp)

but matrix.operator(i,j) = a double value
so [double].operator=(temp)

Do I overload my '=' operator to be something like this:

friend operator=( double val_a, double val_b)

I don't think that's right.
No, you have to define

double& operator()(int r, int c);

because you return a reference, you can use on the lhs of assignment.


2. My second problem is that I want matrix(i)(j) syntax instead of
matrix(i,j) to return a double. I am think matrix(i)(j) should
be allowed because we can use things like any_2d_array[i][j].
I expand my function (I don't think it's right):


Now matrix(i)(j) is the same as

matrix.operator(i).operator(j)

So Matrix::operator() must return something for which another operator()

is valid. In other words Matrix::operator() must return a class which also has operator() defined. Classes like this are called proxy classes. Like this

class Proxy
{
double& operator()(int j); // returns a reference
};

class Matrix
{
Proxy operator()(int i); // returns a proxy
};

I'll leave you too work out the details, will be a good learning exercise.

john


Thanks. I got them to work from your advice.

The proxy classes are not too convenient if I want to overload the ()
operator for a 10-D array. I would have to define 9 additional proxy
classes:

double &Proxy9::operator()(int i);
Proxy9 Proxy8::operator()(int i);
Proxy8 Proxy7::operator()(int i);
....
....
Proxy1 Matrix::operator()(int i);

Is there a better way to do it? I know a 10-D array is a bit extreme, but
just want to learn :)
Jul 22 '05 #5
>
Thanks. I got them to work from your advice.

The proxy classes are not too convenient if I want to overload the ()
operator for a 10-D array. I would have to define 9 additional proxy
classes:

double &Proxy9::operator()(int i);
Proxy9 Proxy8::operator()(int i);
Proxy8 Proxy7::operator()(int i);
...
...
Proxy1 Matrix::operator()(int i);

Is there a better way to do it? I know a 10-D array is a bit extreme, but
just want to learn :)


Have a look at the boost multi_array class

http://www.boost.org/libs/multi_array/doc/index.html

which shows a completely different approach using templates.

john
Jul 22 '05 #6

This discussion thread is closed

Replies have been disabled for this discussion.

Similar topics

4 posts views Thread by Zenon | last post: by
16 posts views Thread by Joseph Paterson | last post: by
1 post views Thread by blazted | last post: by
6 posts views Thread by guna6680 | last post: by
4 posts views Thread by ShutterMan | last post: by
1 post views Thread by jr.freester | last post: by

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.