class Cents
{
private:
int m_nCents;
public:
Cents(int nCents) { m_nCents = nCents; }
// Overload cCents + int
friend Cents operator+(const Cents &cCents, int nCents);
int GetCents() { return m_nCents; }
};
// note: this function is not a member function!
Cents operator+(const Cents &cCents, int nCents)
{
return Cents(cCents.m_nCents + nCents);
}
int main()
{
Cents c1 = Cents(4) + 6;
std::cout << "I have " << c1.GetCents() << " cents." << std::endl;
return 0;
}
我不清楚表达方式如何
Cents(4)+6
排队
Cents c1 = Cents(4) + 6;
被评估。是的,我知道我们分别为 Cents 和 int 类型的操作数重载了运算符“+”。
据我了解 Censt(4) 是构造函数,对吗?所以当
Cents operator+(const Cents &cCents, int nCents)
{
return Cents(cCents.m_nCents + nCents);
}
被称为 cCenst 是否成为对 Cents(4) 的引用?
从线
return Cents(cCents.m_nCents + nCents);
可以推断出 cCenst 是 Censt 类型的对象,因为我们通过成员选择运算符 "." 访问 m_nCents。但是 Censt(4) 是一个构造函数,而不是一个类对象。
对我来说,cCenst 引用 Cents(4) 似乎没有意义,因为它们并不等同。