可能重复:
make_unique 和完美转发
为什么C++11有make_shared
模板,却没有make_unique
模板?
这使得代码非常不一致。
auto x = make_shared<string>("abc");
auto y = unique_ptr<string>(new string("abc"));
可能重复:
make_unique 和完美转发
为什么C++11有make_shared
模板,却没有make_unique
模板?
这使得代码非常不一致。
auto x = make_shared<string>("abc");
auto y = unique_ptr<string>(new string("abc"));