Aracılığıyla paylaş


hash_set::crend

Not

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

Tersine çevrilmiş hash_set'deki son öğe izleyen konum adresleri const bir yineleyici döndürür.

const_reverse_iterator crend( ) const;

Dönüş Değeri

Bir const izleyen bir ters'deki son öğe konumu ele çift yönlü Yineleyici ters hash_set Class (ilk öğe unreversed önünde konumu hash_set).

Notlar

crendkullanılan bir ters işlem ile hash_set gibi hash_set::end ile kullanılan bir hash_set.

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

crendters bir yineleyici olup sonuna ulaştı için test etmek için kullanılan, hash_set.

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_crend.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.crend( );
   hs1_crIter--;
   cout << "The last 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