设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1161|回复: 3
打印 上一主题 下一主题

**的重载

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 03:12:26 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
我这个程序没实现了,请大家帮忙指教一下如何在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;
}
2#
发表于 2009-11-3 03:12:27 | 只看该作者
#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, a& other)//去掉 const
{
in>>other.m;
return in;
}
private:
int m;
};

int main()
{
a p(3);
cout<<p<<endl;
int i;
cin>>i;
a q;
cin>>q;//不要象你那样q(4),要写成q(4)只能在定义时调用构造函数
cout<<q;
return 0;
}
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 03:12:28 | 只看该作者
请问楼上的朋友,为什么要去掉const啊?我有点不明白
回复 支持 反对

使用道具 举报

4#
发表于 2009-11-3 03:12:29 | 只看该作者
>>
是在写入数据呢
你这里const,对象不能修改.那还能写入了吗
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 11:39 , Processed in 0.100099 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表