gpt4 book ai didi

c++ - 此示例中 move 和前进之间的不同

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

第一个按值取 A 的示例执行两次 move ,而使用 refref 的示例仅执行一次 move 。有什么区别?

struct A
{
A() { cout << "constructor" << endl;}
A(const A&) { cout << "copy constructor " << endl;}
void operator=(const A&) { cout << "assignment operator" << endl; }
A( A&&) { cout << "move copy constructor" << endl;}
void operator=(A&&) { cout << "move assignment operator" << endl;}
};
struct C {
void func(A t) {
d.a = std::move(t);
}
struct Data {
A a;
};
Data d;
};
struct B {
void func(A t) {
C c;
c.func(std::move(t));
}
};
//////////////////////////////////////////////////////////
struct C {
template<class T>
void func(T&& t) {
d.a = std::forward<T>(t);
}
struct Data {
A a;
};
Data d;
};
struct B {
template<class T>
void func(T&& t) {
C c;
c.func(std::forward<T>(t));
}
};

最佳答案

来自 cppreference.com :

When used according to the following recipe in a function template, forwards the argument to another function exactly as it was passed to the calling function.

template<typename T> 
wrapper(T&& arg) {
foo(std::forward<T>(arg));
}

所以在你的片段中

struct B {
template<class T>
void func(T&& t) {
C c;
c.func(std::forward<T>(t));
}
};

std::foward<T>(t)只会转发你的T&&反对 c.func()完全一样 B::func()被称为。这不需要 move ,这就是为什么您使用 std::forward<T> 看到的 move 较少的原因。 .

我真的建议您查看 Scott Meyer 关于 std::move 主题的博客文章和 std::forward : http://scottmeyers.blogspot.com/2012/11/on-superfluousness-of-stdmove.html

关于c++ - 此示例中 move 和前进之间的不同,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13497003/

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