gpt4 book ai didi

c++ - 编译器用析构函数定义移动构造函数

转载 作者:行者123 更新时间:2023-11-30 03:16:03 25 4
gpt4 key购买 nike

根据 cpp 引用 cpp-ref ,如果我们有一个用户定义的析构函数,编译器不会生成默认的移动构造函数。

代码片段:

 class General
{
public:
~General();
General();
void testInitList();
};

int main(int argc, char **argv) {
General b(std::move(General()));
General g = std::move(b);
g.testInitList();
return 0;
}

代码编译意味着编译器生成了一个默认的移动构造函数。代码是使用 gcc 5.4.0 版编译的。

有人可以解释为什么编译器在这种情况下生成移动构造函数和移动赋值运算符,尽管有析构函数吗?

最好的,拉胡尔

最佳答案

当没有移动构造函数或赋值运算符时,不会执行任何移动。 std::move不执行移动。它只是转换它的论点以指示如果可能可能执行移动。如果不可能,则没有移动并且使用 std::move 什么都不做。

关于c++ - 编译器用析构函数定义移动构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56615384/

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