在C++ STL中forward_list max_size()的使用方法及示例

在C++ STL中forward_list max_size()的使用方法及示例

forward_list::max_size() 是C++ STL中的内置函数,用于返回一个forward_list容器可容纳的最大元素数量。

语法:

forward_list_name.max_size()

参数: 该函数不接受任何参数。

返回值: 该函数返回容器可容纳的最大元素数量。

下面的程序演示了上述函数:

程序1:

// CPP program to demonstrate the
// forward_list::max_size() function
// when the list is not-empty
#include <bits/stdc++.h>
using namespace std;
int main()
{
    // declaration of forward list
    forward_list<int> fl;

    // assign value
    fl.assign(5, 8);

    // prints the elements
    cout << "The forward_list elements: ";

    for (auto it = fl.begin(); it != fl.end(); it++)
        cout << *it << " ";

    cout << "\nThe max size: " << fl.max_size();
    return 0;
}
输出:
The forward_list elements: 8 8 8 8 8 
The max size: 1152921504606846975

程序2:

// CPP program to demonstrate the
// forward_list::max_size() function
// when the list is empty
#include <bits/stdc++.h>
using namespace std;
int main()
{
    // declaration of forward list
    forward_list<int> fl;

    cout << "\nThe max size: " << fl.max_size();
    return 0;
}
输出:
The max size: 1152921504606846975

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程

C++ 教程