當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ multiset max_size()用法及代碼示例


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 <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
    // declaring unordered multiset gfg 
    unordered_multiset<int> 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


相關用法


注:本文由純淨天空篩選整理自Kushagra7744大神的英文原創作品 multiset max_size() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。