C++备忘录064:Emplacement vs Insertion gist of "Effective Modern C++"

本文探讨了在C++中,Emplacement相比于Insertion在哪些情况下通常能提供更好的性能。主要关注点在于Emplacement允许直接构造到容器中,避免了赋值操作,且适用于不同类型的参数,同时在处理资源管理问题时更为合适。此外,还提到了初始化方式的区别,如直接初始化与复制初始化的适用场景。
摘要由CSDN通过智能技术生成
Where emplacement will almost certainly outperform insertion
  1. The value being added is constructed into the container, not assigned
  2. The argument type(s) being passed differ from the type held by the container
  3. The container is unlikely to reject the new value as a duplicate
vs.emplace_back("xyzzy");	
// construct new vlaue at end of container
// don't pass the type in container
// don't use container rejecting duplicates
Resource man
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值