std :: forward_list ::: max_size()是CPP STL中的内置函数,该函数返回forward_list可以容纳的最大元素数。该值取决于系统或库的实现。
句法:
forwardlist_name.max_size ()
参数:该函数不接受任何参数。
返回值:该函数返回可以存储在forward_list中的最大数目。
下面的程序演示了以上函数:
// C++ program to illustrate the
// max_size() function
#include
using namespace std;
int main()
{
// initialising the forward list
forward_list f;
// print max number of values that
// can be held by forward_list
cout << "Max_size of the list is "
<< f.max_size() << endl;
return 0;
}
输出:
Max_size of the list is 1152921504606846975
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。