unordered_set::size()方法是C++ STL中的內置函數,用於返回unordered_set容器中的元素數。
用法:
unordered_set_name.size()
參數:不接受任何參數。
返回值:該函數返回容器中元素的數量。
以下示例程序旨在說明unordered_set::size()函數:
示例1:
// C++ program to illustrate the
// unordered_set.size() function
#include <iostream>
#include <unordered_set>
using namespace std;
int main()
{
unordered_set<int> arr1 = { 1, 2, 3, 4, 5 };
// prints the size of arr1
cout << "size of arr1:" << arr1.size();
// prints the element
cout << "\nThe elements are: ";
for (auto it = arr1.begin(); it != arr1.end(); it++)
cout << *it << " ";
return 0;
}
輸出:
size of arr1:5 The elements are: 5 1 2 3 4
示例2:
// C++ program to illustrate the
// unordered_set::size() function
// when container is empty
#include <iostream>
#include <unordered_set>
using namespace std;
int main()
{
unordered_set<int> arr2 = {};
// prints the size
cout << "Size of arr2 : " << arr2.size();
return 0;
}
輸出:
Size of arr2 : 0
相關用法
- C++ list size()用法及代碼示例
- C++ unordered_multimap size()用法及代碼示例
- C++ valarray size()用法及代碼示例
- C++ multimap size()用法及代碼示例
- C++ set::size()用法及代碼示例
- C++ map::size()用法及代碼示例
- C++ bitset size()用法及代碼示例
- C++ match_results size()用法及代碼示例
- C++ unordered_multiset size()用法及代碼示例
- C++ unordered_map size()用法及代碼示例
- C++ array::size()用法及代碼示例
- C++ multiset size()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 unordered_set size() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。