标题:[求助]一个关于函数重载运算符+的程序
只看楼主
静思
Rank: 3Rank: 3
来 自:沈阳
等 级:新手上路
威 望:8
帖 子:630
专家分:0
注 册:2006-2-28
 问题点数:0 回复次数:1 
[求助]一个关于函数重载运算符+的程序

编写一个计数器Counter类,对其重载运算符+。对运算符有点不太懂,麻烦哪位高手指点一下!!!!!!

搜索更多相关主题的帖子: 算符 函数 载运 
2006-04-25 22:14
gototheworld
Rank: 1
等 级:新手上路
帖 子:218
专家分:0
注 册:2006-3-24
得分:0 

不知道你是要一元的还是二元的
以下是一元的:
#include <iostream>
using namespace std;
class Counter
{
int i;
public:
Counter(int ii = 0) : i(ii) {}
friend const Counter operator+(const Counter & cc);
};
const Counter operator+(const Counter & cc)
{
cout<<"+Counter\n";
return cc;
}
int main()
{
Counter c;
+c;
system("pause");
return 0;
}
以下是二元的:
#include <iostream>
using namespace std;
class Counter
{
int i;
public:
Counter( int ii =0) : i(ii) {}
friend const Counter operator+(const Counter & c,const Counter & cc);
void print()
{
cout<<"i = "<<i<<endl;
}
};
const Counter operator+(const Counter & c,const Counter & cc)
{
return Counter(c.i + cc.i);
}
int main()
{
Counter c1(1),c2(2);
Counter c3 = c1 +c2;
c3.print();
system("pause");
return 0;
}


路漫漫其修远兮 吾将上下而求索
2006-04-25 22:33



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




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

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