set::max_size()是C++ STL中的內置函數,該函數返回集合容器可容納的最大元素數。
用法:
set_name.max_size()
參數:該函數不接受任何參數。
返回值:此函數返回設置的容器可以容納的最大元素數。
以下示例程序旨在說明上述函數:
// CPP program to demonstrate the
// set::max_size() function
#include <bits/stdc++.h>
using namespace std;
int main()
{
set<int> s1, s2;
s1.insert(1);
// If set already contains elements
cout << s1.max_size() << endl;
// If set does not have elements
cout << s2.max_size();
return 0;
}
輸出:
461168601842738790 461168601842738790
相關用法
- C++ multimap maxsize()用法及代碼示例
- C++ log()用法及代碼示例
- C++ fma()用法及代碼示例
- C++ div()用法及代碼示例
- C++ strrchr()用法及代碼示例
- C++ raise()用法及代碼示例
- C++ wcstombs()用法及代碼示例
- C++ array at()用法及代碼示例
- C++ array get()用法及代碼示例
- C++ strcspn()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 set max_size() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。