hash_multiset::size
[!POZNÁMKA]
Toto rozhraní API je zastaralé.Alternativou je unordered_multiset Class.
Vrátí počet prvků hash_multiset.
size_type size( ) const;
Vrácená hodnota
Aktuální délka hash_multiset.
Poznámky
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_multiset_size.cpp
// compile with: /EHsc
#include <hash_set>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multiset <int> hms1;
hash_multiset <int> :: size_type i;
hms1.insert( 1 );
i = hms1.size( );
cout << "The hash_multiset length is " << i << "." << endl;
hms1.insert( 2 );
i = hms1.size( );
cout << "The hash_multiset length is now " << i << "." << endl;
}
Požadavky
Záhlaví: <hash_set>
Obor názvů: stdext