c++ vector容器emplace_back() 和 push_back 的区别
程序员文章站
2022-03-21 14:34:12
...
push_back 加入元素需要先构造然后拷贝或移动,而emplace_back可以原地构造对象,然后加入到容器中,可以减少一次拷贝或构造。
测试代码如下:
typedef struct testEmplace
{
testEmplace()
{
std::cout << "create testEmplace" << std::endl;
}
testEmplace(int a)
{
std::cout << "create testEmplace with param" << std::endl;
}
testEmplace(const testEmplace& src)
{
std::cout << "copy testEmplace" << std::endl;
}
testEmplace(testEmplace&& src)
{
std::cout << "move testEmplace" << std::endl;
}
~testEmplace()
{
std::cout << "destroy testEmplace" << std::endl;
}
testEmplace& operator = (const testEmplace& rht)
{
std::cout << " operator =() testEmplace" << std::endl;
}
}testEmplace;
int main(int argc, char* argv[])
{
std::vector<testEmplace> test;
test.reserve(10); //指定初始容量,防止后续加入元素操作引发容器自动增长
testEmplace a;//构造
test.push_back(a);//拷贝构造
std::cout << "==============" << std::endl;
testEmplace b;//构造
test.push_back(std::move(b));//移动构造
std::cout << "==============" << std::endl;
test.emplace_back(1);//原地构造
std::cout << "==============" << std::endl;
testEmplace c;//构造
test.emplace_back(c);//拷贝构造
std::cout << "==============" << std::endl;
testEmplace d;//构造
test.emplace_back(std::move(d));//移动构造
std::cin.get();
return 0;
}
输出如下:
create testEmplace
copy testEmplace
==============
create testEmplace
move testEmplace
==============
create testEmplace with param
==============
create testEmplace
copy testEmplace
==============
create testEmplace
move testEmplace
推荐阅读
-
详解C++ STL vector容量(capacity)和大小(size)的区别
-
详解C++ STL vector容量(capacity)和大小(size)的区别
-
C++ vector容器和 deque容器的基本操作
-
关于c++中vector的push_back、拷贝构造copy constructor和移动构造move constructor
-
C++ std::vector 的 emplace_back 能否完全取代 push_back
-
C++ Vector容器的push_back( )与pop_back( )函数
-
C++中的vector、list和vector的区别、set的用法与区别以及迭代器iterator
-
C++容器vector和list的insert比较
-
C++容器——vector的reserve()和resize()踩坑记录
-
vector容器resize和reserve方法的区别