1

我是一个尝试学习 c++ 的初学者,所以我的问题可能是非常基本的。考虑以下代码:

class pounds
{
private:
    int m_p;
    int m_cents;
public:
    pounds(){m_p = 0; m_cents= 0;}
    pounds(int p, int cents) 
{
    m_p = p;
    m_cents = cents;
}

friend ostream& operator << (ostream&, pounds&);
friend istream& operator>>(istream&, pounds&);

};

ostream& operator<< (ostream& op, pounds& p)
{
    op<<p.m_p<<"and "<<p.m_cents<<endl;
    return op;
}

istream& operator>>(istream& ip, pounds& p)
{
    ip>>p.m_p>>p.m_cents;
    return ip;
}

这可以编译并且似乎可以工作,但我没有返回对局部变量的引用?提前致谢。

4

1 回答 1

2

这是正确的,因为没有局部变量,所以有references, 将被传递,何时operators会被调用。

我建议你将签名更改operator <<

std::ostream& operator << (ostream& os, const pounds& p);

因为,p在功能上没有修改。

于 2012-09-06T10:51:20.673 回答