问题描述
- 一个关于c++构造函数和运算符重载的问题
-
代码如下,具体情况是,我定义了一个有形参的构造函数和+号运算符重载,我觉得两个是独立的,但是在调用+号运算符重载时发现同时又调用了这个构造函数,因为我在函数里写了输出语句,所以被调用时我能看到,c++小白想请问各位大神是为什么?是运算符重载函数写的有问题吗?多谢各位~~
//constructeur 2
BigInt::BigInt(int n):numDigits(0)
{
cout << "constructeur 2 bien appelé" << endl;
int quotient = n;
int residu;
cout << "l'entier que vous donnez est ";
for(int i=0;i
{
numDigits++;
residu = quotient%10;
quotient = quotient/10;
vals[i] = residu;
if(residu == 0 && quotient == 0)
{
break;
}
cout
}
cout
cout
}
//surcharge de l'operateur+
BigInt BigInt::operator+(const BigInt& a)
{
cout
int temp[3000];
int r = 0;
for(int i=0;i
{
temp[i] = vals[i] + a.vals[i] + r;
if(temp[i]>9)
{
r = 1;
temp[i] -= 10;
}
else{r = 0;}
cout << temp[i] << " ";
}
cout << endl;
return temp[numDigits];
}
解决方案
你的判断是对的,重载的运算符会调用拷贝构造函数,把结果放在堆栈上,看下面的最简单的程序
#include <iostream>
using namespace std;
class A
{
public:
A() { cout << "A()" << endl; }
A(A& o){ cout << "A(A& o)" << endl; }
A operator+(A& o){ return o; }
};
int main()
{
A a, b;
a + b;
return 0;
}
A()
A()
A(A& o)
Press any key to continue
解决方案二:
你把返回类型写成引用试试,我记得函数返回的时候也会调用拷贝构造函数和构造函数。并不是重载运算符的问题
时间: 2024-09-17 04:14:54