我对以下代码有疑问。功能fun1
和fun2
都是一样的。在一个中,我声明了一个局部变量,在另一个中,一个变量通过参数传递。那么为什么不调用 fun1 复制构造函数。
#include<stdio.h>
#include<iostream>
using namespace std;
class A
{
public:
A()
{
printf("constructor\n");
}
A(const A&)
{
printf("copy cons\n");
}
~A()
{
printf("destructor\n");
}
};
A fun1()
{
A obj;
return obj;
}
A fun2(A obj)
{
return obj;
}
int main()
{
A a=fun1();
printf("after fun1\n");
A b;
A c = fun2(b);
}
输出
constructor
after fun1
constructor
copy cons
copy cons
destructor
destructor
destructor
destructor