C++ STL中的list:push_back()函数用于将新元素添加到现有列表容器中。它使用要添加的元素作为参数,并将其添加到列表容器。
用法:
list_name.push_back(value)
参数:该函数接受单个参数,该参数是必需值。这是指需要添加到列表中的元素list_name。
返回值:该函数的返回类型为void,并且不返回任何值。
下面的程序演示了list::push_back()函数。
// CPP program to illustrate the
// list::push_back() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Initialization of list
list<int> demo_list;
// intital size of list
cout << "Initial Size of the list: "
<< demo_list.size() << endl;
// Adding elements to the list
// using push_back function
demo_list.push_back(10);
demo_list.push_back(20);
demo_list.push_back(30);
// Size of list after adding
// some elements
cout << "Size of list after adding three "
<< "elements: " << demo_list.size();
return 0;
}
输出:
Initial Size of the list: 0 Size of list after adding three elements: 3
相关用法
- C++ list end()用法及代码示例
- C++ list max_size()用法及代码示例
- C++ list remove()用法及代码示例
- C++ list splice()用法及代码示例
- C++ list emplace()用法及代码示例
- C++ list assign()用法及代码示例
- C++ list back()用法及代码示例
- C++ list front()用法及代码示例
- C++ list push_front()用法及代码示例
- C++ list pop_front()用法及代码示例
- C++ list pop_back()用法及代码示例
- C++ list empty()用法及代码示例
- C++ list reverse用法及代码示例
- C++ list merge()用法及代码示例
- C++ list size()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list push_back() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。