| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 462 人关注过本帖
标题:>>的重载
取消只看楼主 加入收藏
heliujin
Rank: 2
等 级:论坛游民
帖 子:249
专家分:14
注 册:2006-3-14
结帖率:100%
收藏
 问题点数:0 回复次数:1 
>>的重载

我这个程序没实现了,请大家帮忙指教一下如何在MAIN()函数里 把重载>>运算符的功能体现出来啊 写几行代码就可以了 谢谢大家了
#include<iostream.h>

class a
{
public:

a(){}

a(int _m):m(_m){}

friend ostream& operator << (ostream& out,const a& other)
{
out<<other.m;
return out;
}

friend istream& operator >> (istream& in,const a& other)
{
in>>other.m;
return in;
}

private:
int m;
};


int main()
{
a p(3);
cout<<p<<endl;
int i;
cin>>i;
a q;
cin>>q(4);
cout<<q;
return 0;
}

搜索更多相关主题的帖子: 重载 
2006-06-14 20:43
heliujin
Rank: 2
等 级:论坛游民
帖 子:249
专家分:14
注 册:2006-3-14
收藏
得分:0 
请问楼上的朋友,为什么要去掉const啊?我有点不明白
2006-06-15 07:52
快速回复:>>的重载
数据加载中...
 
   



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

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