标题:运算符重载的问题
取消只看楼主
小爸爸
Rank: 2
等 级:论坛游民
帖 子:12
专家分:10
注 册:2013-9-13
结帖率:100%
 问题点数:0 回复次数:1 
运算符重载的问题
#include<iostream>
using namespace std;
class complex
{
private:
    double x,y;
public:
    complex(double a=0,double b=0)
        :x(a),y(b)
    {}
    friend ostream& operator <<(ostream& os,const complex& rhs);
};
ostream& operator <<(ostream& os,const complex& rhs)
{
    os<<rhs.x<<"   "<<rhs.y<<endl;
    return os;
}
int main()
{
    complex p(1,2);
    cout<<p<<endl;
}
搜索更多相关主题的帖子: private complex public double friend 
2013-12-09 22:56
小爸爸
Rank: 2
等 级:论坛游民
帖 子:12
专家分:10
注 册:2013-9-13
得分:0 
回复 2楼 kevin_01
谢谢啊
2013-12-12 14:59



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-424972-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.052559 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved