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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。