gpt4 book ai didi

c++ - move 构造函数可以接受类本身以外的参数吗?

转载 作者:行者123 更新时间:2023-11-30 05:14:20 27 4
gpt4 key购买 nike

基本上, move 构造函数的参数是类本身。

但是,如果我想在没有复制操作的情况下从左值构造一个类的对象,我可以这样做吗?

class A{
A(const LargeDataType& inData):data(inData) {} // constructor 1
A(LargeDataType&& inData):data(std::move(inData)) {} // constructor 2
private:
LargeDataType data;
};

使用方法:

方法一:

LargeDataType outData = 100;
A objA(std::move(outData)); // call constructor 2

方法二(如果构造函数二没有实现):

LargeDataType outData = 100;
A objA(std::move(outData)); // call constructor 1

这样在构造objA的时候就没有复制操作了。我的问题是:

  1. 这样创建 move 构造函数合法吗?

  2. 这比传统的构造函数更有效,因为在创建 objA 期间不需要复制?

  3. 方法2是否可以比方法1更好并具有相同的效率?

非常感谢!

最佳答案

您拥有的不是 move 构造函数。它只是一个将右值引用作为参数的构造函数。它们是非常好的构造函数,但它们不是 move 构造函数。

来自 C++11 标准 (12.8/3):

A non-template constructor for class X is a move constructor if its first parameter is of type X&&, const X&&, volatile X&&, or const volatile X&&, and either there are no other parameters or else all other parameters have default arguments (8.3.6).

只有

A(A&& a) { ... }
A(const A&& a) { ... }
A(volatile A&& a) { ... }
A(volatile const A&& a) { ... }

可能称为 move 构造函数。

如果除了上述之外还有带默认值的参数,它们也有资格作为 move 构造函数。例如

A(A&& a, T arg = {}) { ... }

关于c++ - move 构造函数可以接受类本身以外的参数吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43481206/

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