Partager via


mappage : : échange (STL/CLR)

Échange le contenu de deux conteneurs.

    void swap(map<Key, Mapped>% right);

Paramètres

  • right
    Conteneur avec lequel échanger le contenu.

Notes

The member function swaps the controlled sequences between this and right. It does so in constant time and it throws no exceptions. You use it as a quick way to exchange the contents of two containers.

Exemple

// cliext_map_swap.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)); 
 
// display contents " [a 1] [b 2] [c 3]" 
    for each (Mymap::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// construct another container with repetition of values 
    Mymap c2; 
    c2.insert(Mymap::make_value(L'd', 4)); 
    c2.insert(Mymap::make_value(L'e', 5)); 
    c2.insert(Mymap::make_value(L'f', 6)); 
    for each (Mymap::value_type elem in c2) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
// swap and redisplay 
    c1.swap(c2); 
    for each (Mymap::value_type elem in c1) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
 
    for each (Mymap::value_type elem in c2) 
        System::Console::Write(" [{0} {1}]", elem->first, elem->second); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Configuration requise

En-tête : <cliext/map>

Espace de nommage cliext

Voir aussi

Référence

map (STL/CLR)

mappage : : operator= (STL/CLR)