list :: max_size()是C++ STL中的内置函数,它返回列表容器可以容纳的最大元素数。
语法:
list_name.max_size()
参数:该函数不接受任何参数。
返回值:此函数返回列表容器可以容纳的最大元素数。
下面的程序说明了C++ STL中的list :: max_size()函数:
// CPP program to illustrate the
// list::max_size() function
#include
using namespace std;
int main()
{
// Creating a list
list demoList;
// checking the max size of the list
cout << demoList.max_size();
return 0;
}
输出:
768614336404564650
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。