gpt4 book ai didi

c++ - 为什么 move 比通过 const& 传递更昂贵?

转载 作者:行者123 更新时间:2023-11-30 01:09:40 33 4
gpt4 key购买 nike

我将一些对象在其生命周期结束前传递给构造函数。

int main(){

//I wanted to avoid short string optimization in this example.
const std::string a(25,"a");
const std::string b(25,"b");
const std::string c(25,"c");

Foo f{a,b,c};
}

对于 Foo 的构造函数,我考虑了两个选项。

const&(调用字符串的复制构造函数):

Foo(const std::string & a,
const std::string & b,
const std::string & c)
:a(a)
,b(b)
,c(c)
{}

std::move(调用字符串的 move 构造函数):

Foo(std::string a,
std::string b,
std::string c)
:a(std::move(a))
,b(std::move(b))
,c(std::move(c))
{}

gcc 7 上使用 -01,我得到了以下结果:

+-------------+-----------------------+
| constructor | assembly instructions |
+-------------+-----------------------+
| const& | 192 |
| move | 264 |
+-------------+-----------------------+

为什么const&指令少?
我认为 move 比通过复制构造函数创建新字符串更便宜。

将变量作为构造函数参数传递的经验法则是什么
这些参数的生命周期何时结束?

最佳答案

您没有调用 move 构造函数。您的参数字符串是常量。因此,当您对它们使用 std::move 时,结果是 const std::string&&。这不会调用 move 构造函数,其签名采用 std::string&&

关于c++ - 为什么 move 比通过 const& 传递更昂贵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39864497/

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