Aracılığıyla paylaş


hash_set::cbegin

Not

Bu API artık kullanılmıyor.Alternatif unordered_set Class.

Hash_set ilk öğe adresleri const bir yineleyici döndürür.

const_iterator cbegin( ) const;

Dönüş Değeri

İlk öğe adresleme const bir çift yönlü Yineleyici hash_set Class veya izleyen boş yere hash_set.

Notlar

Dönüş değeri olan cbegin, öğeleri hash_set nesnesi değiştirilemez.

Visual C++ .NET 2003, üyeleri de <hash_map> ve <hash_set> başlık dosyaları artık std ad alanında bulunan, ancak bunun yerine stdext ad alanına taşınmış. Bkz: ad stdext daha fazla bilgi için.

Örnek

// hash_set_cbegin.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>

int main( )
{
   using namespace std;
   using namespace stdext;
   hash_set <int> hs1;
   hash_set <int>::const_iterator hs1_cIter;
   
   hs1.insert( 1 );
   hs1.insert( 2 );
   hs1.insert( 3 );

   hs1_cIter = hs1.cbegin( );
   cout << "The first element of hs1 is " << *hs1_cIter << endl;
}
  

Gereksinimler

Başlık: <hash_set>

Ad alanı: stdext

Ayrıca bkz.

Başvuru

hash_set Class

Standart Şablon Kütüphanesi