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
using namespace std;
int main()
{
// Creating a list
list 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++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。