hash_multimap::size
[!UWAGA]
Ten interfejs API jest nieaktualny.Alternatywą jest unordered_multimap Class.
Zwraca liczbę elementów w hash_multimap.
size_type size( ) const;
Wartość zwracana
Bieżąca długość hash_multimap.
Uwagi
W Visual C++ .NET 2003, członkowie <hash_map> i <hash_set> pliki nagłówkowe są już w przestrzeni nazw std, ale raczej zostały przeniesione do obszaru nazw stdext.Zobacz stdext nazw uzyskać więcej informacji.
Przykład
Podczas kompilowania w tym przykładzie z /Wp64 flaga lub na platformie 64-bitowy kompilator ostrzeżenie C4267 zostanie wygenerowany.Aby uzyskać więcej informacji na temat tego ostrzeżenia, zobacz Kompilator ostrzeżenia (poziom 3) C4267.
// hash_multimap_size.cpp
// compile with: /EHsc
#include <hash_map>
#include <iostream>
int main( )
{
using namespace std;
using namespace stdext;
hash_multimap<int, int> hm1, hm2;
hash_multimap<int, int>::size_type i;
typedef pair<int, int> Int_Pair;
hm1.insert(Int_Pair(1, 1));
i = hm1.size();
cout << "The hash_multimap length is " << i << "." << endl;
hm1.insert(Int_Pair(2, 4));
i = hm1.size();
cout << "The hash_multimap length is now " << i << "." << endl;
}
Wymagania
Nagłówek: <hash_map>
Przestrzeń nazw: stdext