当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ forward_list::max_size()用法及代码示例


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。