gpt4 book ai didi

c++ - 在构造函数中复制或引用?

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

该代码中什么是最佳的?

class C
{
public:
C(const std::string& str): str_(str) {}
private:
std::string str_;
}

或者

class C
{
public:
C(std::string str): str_(str) {}
private:
std::string str_;
}

我在第二个代码中有两个复制而在第一个代码中有一个是对的吗?那么第一个更好吗?

但有时我想像这样创建 C 类:

C c(std::string());

我有一个警告(GCC),但在那种情况下代码没问题......

最佳答案

为什么不在构造函数中简单地设置一个默认参数值

class C
{
public:
C(const std::string& str = ""): str_(str) {}
// ^^^^
private:
std::string str_;
};

然后写

C c; 

代替

C c(std::string());

?


请注意

C(const std::string& str = "")

在声明

时无论如何都是多余的
C() = default;

构造函数。


Am I right that in the second code I have two copying and I have one in the first code?

因为 std::string 支持移动构造函数 std::string(std::string&& s) 在这种情况下你通常不需要担心.编译器将根据需要对其进行优化。

关于c++ - 在构造函数中复制或引用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36683018/

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