I have overloaded [] operator in my class Interval to return minutes or seconds.
But I am not sure how to assign values to minutes or second using [] operator.
For example : I can use this statement
cout << a[1] << "min and " << a[0] << "sec" << endl;
but I want to overload [] operator, so that I can even assign values to minutes or seconds using
a[1] = 5;
a[0] = 10;
My code :
#include <iostream>
using namespace std;
class Interval
{
public:
long minutes;
long seconds;
Interval(long m, long s)
{
minutes = m + s / 60;
seconds = s % 60;
}
void Print() const
{
cout << minutes << ':' << seconds << endl;
}
long operator[](int index) const
{
if(index == 0)
return seconds;
return minutes;
}
};
int main(void)
{
Interval a(5, 75);
a.Print();
cout << endl;
cout << a[1] << "min and " << a[0] << "sec" << endl;
cout << endl;
}
I know I have to declare member variables as private, but I have declared here as public just for my convenience.
Return a reference to the member in question, instead of its value:
Change the function signature by removing the
const
and returning a reference:Now you will be able to write statements like:
Your array index member operator should be provided as
converting the method to as given below should do it:
Overloading op[] to use hardcoded "index" values doesn't make sense here, and you actually already have the solution in your class definition:
You can turn those into methods instead of public data members, that's inconsequential for not overloading op[]. However, since you want write access as well, the only advantage a method would have is validation (e.g. checking 0 <= seconds < 60).
In-order to avoid confusion in the case of overloading the sub-script operator, it is recommended to use the
const
andnon-const
version of the sub-script operator.With
A[1] = 5
, you are trying to modify the object atindex 1
. So the non-const version of the sub-script operator will be invoked automatically.With
cout << A[1]
, you are not modifying the object atindex 1
. So the const version of the sub-script operator will be invoked automatically.