我目前正在阅读有关C++的内容,并且我读到在使用按引用返回时,我应该确保我没有返回对函数返回时将超出范围的变量的引用。
那么为什么在Add
函数中cen
通过引用返回对象并且代码正常工作?!
这是代码:
#include <iostream>
using namespace std;
class Cents
{
private:
int m_nCents;
public:
Cents(int nCents) { m_nCents = nCents; }
int GetCents() { return m_nCents; }
};
Cents& Add(Cents &c1, Cents &c2)
{
Cents cen(c1.GetCents() + c2.GetCents());
return cen;
}
int main()
{
Cents cCents1(3);
Cents cCents2(9);
cout << "I have " << Add(cCents1, cCents2).GetCents() << " cents." << std::endl;
return 0;
}
我在 Win7 上使用 CodeBlocks IDE。