multiset :: max_size()是C++ STL中的观察器函数,该函数返回容器可以容纳的最大元素数。此限制可能是由于系统或库的实现。作为观察者函数,它不会以任何方式修改多集。
句法:
multiset_name.max_size()
参数:该函数不接受任何参数。
返回值:该方法返回一个正整数,表示容器可以容纳的最大元素数。
注意:此函数返回的值通常是容器大小的理论极限。但是,在运行时,由于RAM的限制,容器的大小可能会限制为小于max_size()函数返回的值。
下面的程序演示了unordered_multiset :: max_size()的用法
// C++ program to demonstrate the use of
// multiset max_size()
#include
#include
using namespace std;
int main()
{
// declaring unordered multiset gfg
unordered_multiset gfg;
unsigned int max_elements;
// calculating the max size of multiset gfg
max_elements = gfg.max_size();
cout << "Number of elements "
<< "the multiset can hold is: "
<< max_elements << endl;
return 0;
}
输出:
Number of elements the multiset can hold is: 4294967295
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。