其他分享
首页 > 其他分享> > c – 使用std :: make_unique的push_back或emplace_back

c – 使用std :: make_unique的push_back或emplace_back

作者:互联网

根据these questions here中的答案,我知道使用c 14的std :: make_unique肯定比使用emplace_back(new X)更直接.

那就是说,打电话是首选

my_vector.push_back(std::make_unique<Foo>("constructor", "args"));

要么

my_vector.emplace_back(std::make_unique<Foo>("constructor", "args"));

也就是说,在添加从std :: make_unique构造的std :: unique_ptr时,我应该使用push_back还是emplace_back?

====编辑====

为什么? c:< - (微笑)

解决方法:

就新物体的构造而言,它没有任何区别;你已经有了unique_ptr< Foo> prvalue(调用make_unique的结果)所以push_back和emplace_back都会在构造要附加到向量的元素时调用unique_ptr移动构造函数.

如果你的用例涉及在插入后访问新构造的元素,那么从17开始,emplace_back更方便,因为它返回对元素的引用.而不是

my_vector.push_back(std::make_unique<Foo>("constructor", "args"));
my_vector.back().do_stuff();

你可以写

my_vector.emplace_back(std::make_unique<Foo>("constructor", "args")).do_stuff();

标签:c,c11,c14,stdvector,unique-ptr
来源: https://codeday.me/bug/20191006/1860744.html