新微赢技术网
标题:
**的重载
[打印本页]
作者:
liu
时间:
2009-11-3 03:12
标题:
**的重载
我这个程序没实现了,请大家帮忙指教一下如何在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;
}
作者:
市井游侠々
时间:
2009-11-3 03:12
#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;
}
作者:
.嵿峜繌嗲﹖
时间:
2009-11-3 03:12
请问楼上的朋友,为什么要去掉const啊?我有点不明白
作者:
小飞俠
时间:
2009-11-3 03:12
>>
是在写入数据呢
你这里const,对象不能修改.那还能写入了吗
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2