hash_map::hash_map (STL/CLR)
Konstruuje obiekt kontenera.
hash_map();
explicit hash_map(key_compare^ pred);
hash_map(key_compare^ pred, hasher^ hashfn);
hash_map(hash_map<Key, Mapped>% right);
hash_map(hash_map<Key, Mapped>^ right);
template<typename InIter>
hash_maphash_map(InIter first, InIter last);
template<typename InIter>
hash_map(InIter first, InIter last,
key_compare^ pred);
template<typename InIter>
hash_map(InIter first, InIter last,
key_compare^ pred, hasher^ hashfn);
hash_map(System::Collections::Generic::IEnumerable<GValue>^ right);
hash_map(System::Collections::Generic::IEnumerable<GValue>^ right,
key_compare^ pred);
hash_map(System::Collections::Generic::IEnumerable<GValue>^ right,
key_compare^ pred, hasher^ hashfn);
Parametry
pierwszy
Początek zakresu do wstawienia.hashfn
Skrótu funkcji mapowania kluczy do segmentów.ostatni
Koniec zakresu do wstawienia.pred
Zamawianie predykat w kontrolowanej sekwencji.prawo
Obiekt lub zakres do wstawienia.
Uwagi
Konstruktor:
hash_map();
Inicjuje kontrolowanej sekwencji bez elementów z domyślna kolejność predykatu key_compare()i z funkcją mieszania domyślne.Umożliwia ona określić pusty ciąg początkowy kontrolowanym, z domyślna kolejność funkcji mieszania i predykatu.
Konstruktor:
explicit hash_map(key_compare^ pred);
Inicjuje kontrolowanej sekwencji bez elementów zamawiania predykat predi z funkcją mieszania domyślne.Umożliwia ona określić pusty ciąg początkowy kontrolowanej, określony predykatu zamawiania i domyślnej funkcji mieszania.
Konstruktor:
hash_map(key_compare^ pred, hasher^ hashfn);
Inicjuje kontrolowanej sekwencji bez elementów zamawiania predykat predi z funkcją mieszania hashfn.Umożliwia ona określić pusty ciąg początkowy kontrolowanym, z podanej zamawiania funkcji mieszania i predykatu.
Konstruktor:
hash_map(hash_map<Key, Mapped>% right);
Inicjuje kontrolowanej sekwencji z sekwencji [right.hash_map::begin (STL/CLR)(), right.hash_map::end (STL/CLR)())z domyślna kolejność predykatu oraz z domyślnej funkcji mieszania.Umożliwia ona określenie początkowego kontrolowanej sekwencji, który jest kopią sekwencji kontrolowane przez obiekt hash_map right, z domyślnego sortowania predykat i funkcji mieszania.
Konstruktor:
hash_map(hash_map<Key, Mapped>^ right);
Inicjuje kontrolowanej sekwencji z sekwencji [right->hash_map::begin (STL/CLR)(), right->hash_map::end (STL/CLR)())z domyślna kolejność predykatu oraz z domyślnej funkcji mieszania.Umożliwia ona określenie początkowego kontrolowanej sekwencji, który jest kopią sekwencji kontrolowane przez obiekt hash_map right, z domyślnego sortowania predykat i funkcji mieszania.
Konstruktor:
template<typename InIter>
hash_map(InIter first, InIter last);
Inicjuje kontrolowanej sekwencji z sekwencji [first, last)z domyślna kolejność predykatu oraz z domyślnej funkcji mieszania.Można go używać do kontrolowanej sekwencji kopię innej sekwencji z domyślna kolejność funkcji mieszania i predykatu.
Konstruktor:
template<typename InIter>
hash_map(InIter first, InIter last,
key_compare^ pred);
Inicjuje kontrolowanej sekwencji z sekwencji [first, last), zamawiania predykat predi z funkcją mieszania domyślne.Można go używać do kontrolowanej sekwencji kopię innej sekwencji z określony predykatu zamawiania i domyślnej funkcji mieszania.
Konstruktor:
template<typename InIter>
hash_map(InIter first, InIter last,
key_compare^ pred, hasher^ hashfn);
Inicjuje kontrolowanej sekwencji z sekwencji [first, last), zamawiania predykat predi z funkcją mieszania hashfn.Można go używać do kontrolowanej sekwencji kopię innej sekwencji z podanej zamawiania funkcji mieszania i predykatu.
Konstruktor:
hash_map(System::Collections::Generic::IEnumerable<Key>^ right);
Inicjuje kontrolowanej sekwencji z sekwencją wyznaczone przez moduł wyliczający rightz domyślna kolejność predykatu oraz z domyślnej funkcji mieszania.Można go używać do kontrolowanej sekwencji kopię innej sekwencji opisane przez moduł wyliczający z domyślna kolejność funkcji mieszania i predykatu.
Konstruktor:
hash_map(System::Collections::Generic::IEnumerable<Key>^ right,
key_compare^ pred);
Inicjuje kontrolowanej sekwencji z sekwencją wyznaczone przez moduł wyliczający right, zamawiania predykat predi z funkcją mieszania domyślne.Można go używać do kontrolowanej sekwencji kopię innej sekwencji opisane przez moduł wyliczający z określonego sortowania predykat i domyślne funkcji skrótu.
Konstruktor:
hash_map(System::Collections::Generic::IEnumerable<Key>^ right,
key_compare^ pred, hasher^ hashfn);
Inicjuje kontrolowanej sekwencji z sekwencją wyznaczone przez moduł wyliczający right, zamawiania predykat predi z funkcją mieszania hashfn.Można go używać do kontrolowanej sekwencji kopię innej sekwencji opisane przez moduł wyliczający z podanej zamawiania funkcji mieszania i predykatu.
Przykład
// cliext_hash_map_construct.cpp
// compile with: /clr
#include <cliext/hash_map>
int myfun(wchar_t key)
{ // hash a key
return (key ^ 0xdeadbeef);
}
typedef cliext::hash_map<wchar_t, int> Myhash_map;
int main()
{
// construct an empty container
Myhash_map c1;
System::Console::WriteLine("size() = {0}", c1.size());
c1.insert(Myhash_map::make_value(L'a', 1));
c1.insert(Myhash_map::make_value(L'b', 2));
c1.insert(Myhash_map::make_value(L'c', 3));
for each (Myhash_map::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an ordering rule
Myhash_map c2 = cliext::greater_equal<wchar_t>();
System::Console::WriteLine("size() = {0}", c2.size());
c2.insert(c1.begin(), c1.end());
for each (Myhash_map::value_type elem in c2)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an ordering rule and hash function
Myhash_map c2h(cliext::greater_equal<wchar_t>(),
gcnew Myhash_map::hasher(&myfun));
System::Console::WriteLine("size() = {0}", c2h.size());
c2h.insert(c1.begin(), c1.end());
for each (Myhash_map::value_type elem in c2h)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
System::Console::WriteLine();
// construct with an iterator range
Myhash_map c3(c1.begin(), c1.end());
for each (Myhash_map::value_type elem in c3)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an iterator range and an ordering rule
Myhash_map c4(c1.begin(), c1.end(),
cliext::greater_equal<wchar_t>());
for each (Myhash_map::value_type elem in c4)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an iterator range and an ordering rule and hash function
Myhash_map c4h(c1.begin(), c1.end(),
cliext::greater_equal<wchar_t>(),
gcnew Myhash_map::hasher(&myfun));
for each (Myhash_map::value_type elem in c4h)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
System::Console::WriteLine();
// construct with an enumeration
Myhash_map c5( // NOTE: cast is not needed
(System::Collections::Generic::IEnumerable<
Myhash_map::value_type>^)%c3);
for each (Myhash_map::value_type elem in c5)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an enumeration and an ordering rule
Myhash_map c6( // NOTE: cast is not needed
(System::Collections::Generic::IEnumerable<
Myhash_map::value_type>^)%c3,
cliext::greater_equal<wchar_t>());
for each (Myhash_map::value_type elem in c6)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct with an enumeration and an ordering rule and hash function
Myhash_map c6h( // NOTE: cast is not needed
(System::Collections::Generic::IEnumerable<
Myhash_map::value_type>^)%c3,
cliext::greater_equal<wchar_t>(),
gcnew Myhash_map::hasher(&myfun));
for each (Myhash_map::value_type elem in c6h)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
System::Console::WriteLine();
// construct by copying another container
Myhash_map c7(c4);
for each (Myhash_map::value_type elem in c7)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// construct by copying a container handle
Myhash_map c8(%c3);
for each (Myhash_map::value_type elem in c8)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
return (0);
}
Wymagania
Nagłówek:<cliext/hash_map>
Przestrzeń nazw: cliext