list::pop_back()是C++ STL中的内置函数,用于从列表容器的背面删除元素。即,此函数删除列表容器的最后一个元素。因此,此函数在从列表末尾删除元素时将容器的大小减小1。
用法:
list_name.pop_back();
参数:该函数不接受任何参数。
返回值:此函数不返回任何内容。
以下示例程序旨在说明C++ STL中的list::pop_back()函数:
// CPP program to illustrate the
// list::pop_back() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// Creating a list
list<int> demoList;
// Adding elements to the list
// using push_back()
demoList.push_back(10);
demoList.push_back(20);
demoList.push_back(30);
demoList.push_back(40);
// Initial List:
cout << "Initial List: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
// removing an element from the end of List
// using pop_back
demoList.pop_back();
// List after removing element from end
cout << "\n\nList after removing an element from end: ";
for (auto itr = demoList.begin(); itr != demoList.end(); itr++)
cout << *itr << " ";
return 0;
}
输出:
Initial List: 10 20 30 40 List after removing an element from end: 10 20 30
相关用法
- C++ list end()用法及代码示例
- C++ list max_size()用法及代码示例
- C++ list remove()用法及代码示例
- C++ list splice()用法及代码示例
- C++ list emplace()用法及代码示例
- C++ list assign()用法及代码示例
- C++ list push_back()用法及代码示例
- C++ list back()用法及代码示例
- C++ list front()用法及代码示例
- C++ list push_front()用法及代码示例
- C++ list pop_front()用法及代码示例
- C++ list empty()用法及代码示例
- C++ list reverse用法及代码示例
- C++ list merge()用法及代码示例
- C++ list size()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 list pop_back() function in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。