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


C++ unordered_set begin()用法及代碼示例


unordered_set::begin()方法是C++ STL中的內置函數,用於返回指向unordered_set容器中第一個元素的迭代器。 unordered_set的所有迭代器隻能用於訪問元素,不允許迭代器修改unordered_set容器中存在的元素。

注意:此迭代器可以指向unordered_set容器中任何指定存儲區的第一個元素或第一個元素。

用法


unordered_set_name.begin(n)

參數:這是一個可選參數,用於指定存儲區編號。如果未傳遞此參數,則begin()方法將返回指向容器第一個元素的迭代器,如果傳遞此參數,則begin()方法將返回指向unordered_set容器中特定存儲區的第一個元素的迭代器。

返回值:此函數返回一個迭代器,該迭代器指向容器中的第一個元素或容器中的指定存儲桶。

以下示例程序旨在說明unordered_set::begin()函數:

// CPP program to illustrate the 
// unordered_set::begin() function 
  
#include <iostream> 
#include <unordered_set> 
  
using namespace std; 
  
int main() 
{ 
  
    unordered_set<int> sampleSet; 
  
    // Inserting elements in the std 
    sampleSet.insert(5); 
    sampleSet.insert(10); 
    sampleSet.insert(15); 
    sampleSet.insert(20); 
    sampleSet.insert(25); 
  
    auto itr1 = sampleSet.begin(); 
    auto itr2 = sampleSet.begin(4); 
  
    cout << "First element in the container is: " << *itr1; 
    cout << "\nFirst element in the bucket 4 is: " << *itr2; 
  
    return 0; 
}
輸出:
First element in the container is: 25
First element in the bucket 4 is: 15


相關用法


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