hash_set::size
Hinweis |
---|
Diese API ist veraltet.Die Alternative ist unordered_set Class. |
Gibt die Anzahl der Elemente im hash_set zurück.
size_type size( ) const;
Rückgabewert
Die aktuelle Länge des hash_set.
Hinweise
In Visual C++ .NET 2003, sind Member der <hash_map> und <hash_set> Headerdateien nicht mehr im stdnamespace, sondern sind in den stdext Namespace verschoben wurde.Weitere Informationen finden Sie unter Der stdext-Namespace.
Beispiel
// hash_set_size.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_set <int> hs1;
hash_set <int> :: size_type i;
hs1.insert( 1 );
i = hs1.size( );
cout << "The hash_set length is " << i << "." << endl;
hs1.insert( 2 );
i = hs1.size( );
cout << "The hash_set length is now " << i << "." << endl;
}
Anforderungen
Header: <hash_set>
Namespace: stdext