std::forward_list::max_size()是CPP STL中的內置函數,該函數返回可由forward_list保留的最大元素數。該值取決於係統或庫的實現。
用法:
forwardlist_name.max_size ()
參數:該函數不接受任何參數。
返回值:該函數返回可以存儲到forward_list中的最大數字。
下麵的程序演示了以上函數:
// C++ program to illustrate the
// max_size() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
// initialising the forward list
forward_list<int> 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
相關用法
注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 forward_list::max_size() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。