hash_map::to_array (STL/CLR)
Kopiuje kontrolowanych sekwencji nowej tablicy.
cli::array<value_type>^ to_array();
Uwagi
Funkcja składowa zwraca tablicę zawierającą kontrolowanych sekwencji.Umożliwia ona otrzymać kopię kontrolowanych sekwencji w postaci tablicy.
Przykład
// cliext_hash_map_to_array.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_map<wchar_t, int> Myhash_map;
int main()
{
Myhash_map c1;
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));
// copy the container and modify it
cli::array<Myhash_map::value_type>^ a1 = c1.to_array();
c1.insert(Myhash_map::make_value(L'd', 4));
for each (Myhash_map::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// display the earlier array copy
for each (Myhash_map::value_type elem in a1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
return (0);
}
Wymagania
Nagłówek: < cliext/hash_map >
Obszar nazw: cliext