Aracılığıyla paylaş


hash_set::crbegin

Not

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

Tersine çevrilmiş hash_set ilk öğe adresleme const bir yineleyici döndürür.

const_reverse_iterator crbegin( ) const;

Dönüş Değeri

Bir const ilk öğe tersine çevrilmiş bir adresleme çift yönlü Yineleyici ters hash_set Class veya unreversed'deki son öğe olan adresleme hash_set.

Notlar

crbegintersine çevrilmiş bir hash_set ile kullanılan gibi hash_set::begin bir hash_set ile birlikte kullanılır.

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

crbeginboyunca yineleme yapmak için kullanılan bir hash_set geriye doğru.

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_crbegin.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_reverse_iterator hs1_crIter;

   hs1.insert( 10 );
   hs1.insert( 20 );
   hs1.insert( 30 );

   hs1_crIter = hs1.crbegin( );
   cout << "The first element in the reversed hash_set is "
        << *hs1_crIter << "." << endl;
}
  

Gereksinimler

Başlık: <hash_set>

Ad alanı: stdext

Ayrıca bkz.

Başvuru

hash_set Class

Standart Şablon Kütüphanesi