C++ 类函数重载错误。强制类型转换错误 。

#include<iostream>usingnamespacestd;classcountt{private:intone;doubletwo;public:doubl... #include <iostream>
using namespace std;

class countt
{
private:
int one;
double two;
public:
double operator + (double &t);
countt(double tw): two(tw){}
};

double countt::operator +( double &t)
{
double f;
f = two + t;
return f;
}

int main()
{
countt aa(2.5);
double c;
c = aa + 2.7;
cout << c << endl;
while(2);
return 0;
}
// 应该要怎样才能正确地强制转换呢?
展开
 我来答
porker2008
2011-05-11 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
#include <iostream>
using namespace std;

class countt
{
private:
int one;
double two;
public:
double operator + (double t); // t不能带引用
countt(double tw): two(tw){}
};

double countt::operator +( double t) // t不能带引用
{
double f;
f = two + t;
return f;
}

int main()
{
countt aa(2.5);
double c;
c = aa + 2.7;
cout << c << endl;
while(2);
return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式