gpt4 book ai didi

c++ - 为什么 C++11 有 `make_shared` 而没有 `make_unique`

转载 作者:IT老高 更新时间:2023-10-28 14:01:29 25 4
gpt4 key购买 nike

Possible Duplicate:
make_unique and perfect forwarding

为什么C++11有make_shared模板,却没有make_unique模板?

这使得代码非常不一致。

auto x = make_shared<string>("abc");
auto y = unique_ptr<string>(new string("abc"));

最佳答案

根据 this article 中的 Herb Sutter 所说这是“部分疏忽”。这篇文章包含一个很好的实现,并为使用它提供了一个强有力的理由:

template<typename T, typename ...Args>
std::unique_ptr<T> make_unique( Args&& ...args )
{
return std::unique_ptr<T>( new T( std::forward<Args>(args)... ) );
}

更新:原始更新has been updated重点也变了。

关于c++ - 为什么 C++11 有 `make_shared` 而没有 `make_unique`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12580432/

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