在C++中,push_back
是用于向容器的末尾添加一个元素的成员函数。一般用于向std::vector
,std::deque
和std::list
等容器中添加元素。
例如,下面是使用push_back
向std::vector
容器中添加元素的示例:
#include <iostream>
#include <vector>
int main() {
std::vector<int> vec;
vec.push_back(10);
vec.push_back(20);
vec.push_back(30);
for (int i : vec) {
std::cout << i << " ";
}
return 0;
}
运行这段代码,输出将会是:
10 20 30
可以看到,push_back
函数将元素按顺序添加到std::vector
容器的末尾。