gpt4 book ai didi

c++ - 根据 move 构造函数实现复制赋值运算符

转载 作者:行者123 更新时间:2023-11-27 22:49:10 25 4
gpt4 key购买 nike

考虑以下概念/示例类

class Test
{
public:
explicit Test(std::string arg_string)
: my_string( std::move(arg_string) )
{ }

Test(const Test& Copy) {
this->my_string = Copy.my_string;
}

Test& operator=(Test Copy) {
MoveImpl( std::move(Copy) );
return *this;
}

Test(Test&& Moved) {
MoveImpl( std::forward<Test&&>(Moved) );
}

Test& operator=(Test&& Moved) {
MoveImpl( std::forward<Test&&>(Moved) );
return *this;
}

private:
void MoveImpl(Test&& MoveObj) {
this->my_string = std::move(MoveObj.my_string);
}

std::string my_string;
};

复制构造函数像往常一样接受一个const&

复制赋值运算符是根据复制构造函数实现的(如果我没记错的话,Scott Meyers 指出异常安全和自赋值问题是通过这种方式解决的)。

在实现 move 构造函数和 move 赋值运算符时,我发现存在一些“代码重复”,我通过添加 MoveImpl(&&) 私有(private)方法“消除”了这些代码。

我的问题是,既然我们知道复制赋值运算符会获取对象的新拷贝,该拷贝将在作用域结束时被清理,那么使用 MoveImpl() 是否正确/良好做法> 实现复制赋值运算符功能的函数。

最佳答案

复制赋值运算符的按值签名的美妙之处在于它消除了对 move 赋值运算符的需要(前提是您正确定义了 move 构造函数!)。

class Test
{
public:
explicit Test(std::string arg_string)
: my_string( std::move(arg_string) )
{ }

Test(const Test& Copy)
: my_string(Copy.my_string)
{ }

Test(Test&& Moved)
: my_string( std::move(Moved.my_string) )
{ }

// other will be initialized using the move constructor if the actual
// argument in the assignment statement is an rvalue
Test& operator=(Test other)
{
swap(other);
return *this;
}

void swap(Test& other)
{
std::swap(my_string, other.my_string);
}

private:
std::string my_string;
};

关于c++ - 根据 move 构造函数实现复制赋值运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39386209/

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