hash_multiset::const_reference
[!NOTA]
Questo API è obsoleto.L'alternativa consiste unordered_multiset Class.
Un tipo che fornisce un riferimento a un elemento const archiviare in un hash_multiset per la lettura e l'esecuzione di operazioni const.
typedef list<typename _Traits::value_type, typename _Traits::allocator_type>::const_reference const_reference;
Note
In Visual C++ .NET 2003, i membri dei file di intestazione <hash_set> e <hash_map> non sono più nello spazio dei nomi di deviazione standard, ma sono stati spostati nello spazio dei nomi di stdext.Per ulteriori informazioni, vedere lo spazio dei nomi stdext.
Esempio
// hash_multiset_const_reference.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hms1.insert( 10 );
hms1.insert( 20 );
// Declare and initialize a const_reference &Ref1
// to the 1st element
const int &Ref1 = *hms1.begin( );
cout << "The first element in the hash_multiset is "
<< Ref1 << "." << endl;
// The following line would cause an error because the
// const_reference cannot be used to modify the hash_multiset
// Ref1 = Ref1 + 5;
}
Requisiti
intestazione: <hash_set>
Stdext diSpazio dei nomi: