Aracılığıyla paylaş


hash_set::cend

Not

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

İzleyen bir hash_set'deki son öğe konumu adresleri const bir yineleyici döndürür.

const_iterator cend( ) const;

Dönüş Değeri

İzleyen'deki son öğe konumu adresleri const bir çift yönlü Yineleyici bir hash_set Class. hash_set Boşsa hash_set::cend == hash_set::begin.

Notlar

cendbir yineleyici sonuna ulaştı olup olmadığını sınamak için kullanılan kendi hash_set. Tarafından döndürülen değeri cend değil veta.

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_cend.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.cend( );
   hs1_cIter--;
   cout << "The last 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