unordered_set::max_size()是C++ STL中的內置函數,在其中定義,該函數由於係統約束或內部實現而返回unordered_set容器可以容納的最大元素數量(即unordered_set的最大大小)。
用法:
map_name.max_size()
參數:該函數不接受任何參數。它隻是返回容器的最大大小。
返回值:該函數返回unordered_set可以容納的最大元素數。
異常:此函數不會引發任何異常。
以下示例程序旨在說明C++中的unordered_set::max_size()函數:
// C++ program to illustrate the
// unordered_set::max_size function
#include <iostream>
#include <unordered_set>
using namespace std;
int main()
{
// declaration
unordered_set<int> sample;
// Get the maximum size of the unordered_set
cout << sample.max_size();
return 0;
}
輸出
1152921504606846975
時間複雜度:O(1)
相關用法
注:本文由純淨天空篩選整理自tufan_gupta2000大神的英文原創作品 unordered_set max_size() in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。