gpt4 book ai didi

c++ - 为什么传递给函数时会调用析构函数而不是构造函数?

转载 作者:行者123 更新时间:2023-12-03 12:52:00 25 4
gpt4 key购买 nike

让我们看一下这段代码。为什么析构函数的调用次数比构造函数的调用次数多?

#include <iostream>
using namespace std;


class B{

public:
B(){
cout << "constructor of B\n";
}
~B(){
cout << "destructor of B\n";
}
};


void func(B obj){
}


int main(){
B obj;
func(obj);
}

输出是

constructor of B
destructor of B
destructor of B

我不明白为什么调用的析构函数的数量与调用的构造函数的数量不同?

最佳答案

您正在按值将对象传递给函数。因此,创建对象的拷贝导致调用对象的复制构造函数。当函数结束执行时,参数的临时拷贝将被销毁,从而调用析构函数。

关于c++ - 为什么传递给函数时会调用析构函数而不是构造函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61907772/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com