我在班级Interval中重载了 [] 运算符以返回minutes或seconds。
但我不确定如何使用 [] 运算符将值分配给分钟或秒。
例如:我可以使用这个语句
cout << a[1] << "min and " << a[0] << "sec" << endl;
但我想重载 [] 运算符,这样我什至可以使用
a[1] = 5;
a[0] = 10;
我的代码:
#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;
}
我知道我必须将成员变量声明为私有,但我在这里声明为公有只是为了方便。