map::to_array (STL/CLR)
Copie la séquence contrôlée à un nouveau tableau.
cli::array<value_type>^ to_array();
Notes
La fonction membre retourne un tableau contenant la séquence contrôlée.Vous l'utilisez pour obtenir une copie de la séquence contrôlée sous forme de tableau.
Exemple
// cliext_map_to_array.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::map<wchar_t, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::make_value(L'a', 1));
c1.insert(Mymap::make_value(L'b', 2));
c1.insert(Mymap::make_value(L'c', 3));
// copy the container and modify it
cli::array<Mymap::value_type>^ a1 = c1.to_array();
c1.insert(Mymap::make_value(L'd', 4));
for each (Mymap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// display the earlier array copy
for each (Mymap::value_type elem in a1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
return (0);
}
Configuration requise
en-tête :<cliext/carte>
Cliext del'espace de noms :