当前位置:网站首页>vector中函数emplace_back的实现原理
vector中函数emplace_back的实现原理
2022-08-04 11:07:00 【老顽固也可爱】
vector中函数emplace_back的实现原理
在vector中的emplace_back函数, 其效率比push_back高很多!
/*例子中使用的Student类的声明*/
class Student
{
private:
int age;
public:
Student();
explicit Student(int age);
~Student();
int getAge();
};
原理分析
push_back函数
vector<Student> team;
team.push(Student(24));
代码运行过程中, 首先是执行Student()创建了一个临时的Student对象, 然后再通过拷贝构造函数把这个临时对象的成员变量值复制到team中的空间里.
二个原因造成效率慢:
- 创建临时Student对象时,需要申请内存空间,申请内存空间一向是耗时很严重的操作
- 拷贝构造函数的复制操作也是需要CPU时间的
emplace_back函数
vector<Student> team;
team.emplace_back(24);
- 这段代码实现的结果和上面是一样的,都在team里添加了一个24岁的Student对象。
- 但在执行效率上,emplace_back函数很快
其原理就是emplace_back函数是直接在team中已有的空间上,调用了Student类的构造函数,节省了临时对象的内存空间申请以及拷贝构造函数的复制操作。
emplace_back实现原理
void* ptr = malloc(sizeof(Student));
new (ptr)Student(100);
cout << ((Student*)ptr)->getAge() << endl;
第1行:主要是分配一个Student对象所需的内存空间,但在vector里,这步不需要考虑,内部会在实现;
第2行:这才是重点,通过这样的语法,就可以对已在的内存空间,调用相应的Student类构造函数进行初始化;
第3行:输出验证结果.
边栏推荐
- 航企纠缠A350安全问题 空客主动取消飞机订单
- MATLAB程序设计与应用 3.2 矩阵变换
- iMeta | German National Cancer Center Gu Zuguang published a complex heatmap visualization method
- 秒云成功入选《2022爱分析 · 银行数字化厂商全景报告》,智能运维能力获认可
- Camunda整体架构和相关概念
- SkiaSharp 之 WPF 自绘 粒子花园(案例版)
- RL78 development environment
- 手搓一个“七夕限定”,用3D Engine 5分钟实现烟花绽放效果
- 美摄问答室|美映 VS 美摄云剪辑
- datax oracle to oracle incremental synchronization
猜你喜欢
利用pytest hook函数实现自动化测试结果推送企业微信
Jenkins User Manual (1) - Software Installation
CVPR 2022 | 从人体网格预测骨架,是真正的生理学骨架!
Digital management insight into retail and e-commerce operations - retail password
Redis查询缓存
职责链模式(responsibilitychain)
入门MySql表的增删查改
map的一道题目<单词识别>
图文手把手教程--ESP32 MQTT对接EMQX本地服务器(VSCODE+ESP-IDF)
C language * Xiaobai's adventure
随机推荐
linux下数据库初始化密码
面试蚂蚁(P7)竟被MySQL难倒,奋发图强后二次面试入职蚂蚁金服
[Hongke case] Assembling furniture based on 3D camera
BOSS 直聘回应女大学生连遭两次性骚扰:高度重视求职者安全,可通过 App 等举报
【机器学习】:如何对你的数据进行分类?
Rust 入门指南 (用 WASM 开发第一个 Web 页面)
[easyUI]修改datagrid表格中的值
Small program containers accelerate the construction of an integrated online government service platform
What is the terminal privilege management
Super Learning Method
Doing Homework HDU - 1074
图文手把手教程--ESP32 MQTT对接EMQX本地服务器(VSCODE+ESP-IDF)
【励志】复盘的重要性
Digital management insight into retail and e-commerce operations - retail password
*iframe*
Jina 实例秀|基于神经搜索的网络安全威胁检测(一)
3-5年以上的功能测试如何进阶自动化?
C language * Xiaobai's adventure
Heap Sort
Graphic and text hands-on tutorial--ESP32 MQTT docking EMQX local server (VSCODE+ESP-IDF)