hash_map::crend
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_map Class.
Vrátí const iterátor, který řeší umístění následných poslední element v převrácené hash_map.
const_reverse_iterator crend( ) const;
Vrácená hodnota
Obousměrný iterátor, který řeší umístění následných poslední prvek v stornované obrátit const hash_map Class (umístění, které bylo před první element v unreversed hash_map).
Poznámky
crendpoužívá se stornované hash_map stejně jako hash_map::end se používá s hash_map.
Vrácená hodnota crend, hash_map objekt nelze upravit.
crendlze otestujte, zda zpětného iterátor dosáhl konce své hash_map.
Hodnoty vrácené crend neměl přímo odkázat.
V aplikaci Visual C++ .NET 2003, členové <hash_map> a <hash_set> jsou již v oboru názvů std soubory hlaviček, ale spíše být přesunut do oboru názvů stdext.Viz stdext obor názvů Další informace.
Příklad
// hash_map_crend.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_map <int, int> hm1;
hash_map <int, int> :: const_reverse_iterator hm1_crIter;
typedef pair <int, int> Int_Pair;
hm1.insert ( Int_Pair ( 3, 30 ) );
hm1_crIter = hm1.crend( );
hm1_crIter--;
cout << "The last element of the reversed hash_map hm1 is "
<< hm1_crIter -> first << "." << endl;
}
Požadavky
Záhlaví: <hash_map>
Obor názvů: stdext