Partager via


collection_adapter : : operator= (STL/CLR)

Remplace le descripteur BCL stocké.

    collection_adapter<Coll>% operator=(collection_adapter<Coll>% right);

Paramètres

  • right
    Adaptateur à copier.

Notes

L'opérateur membre copie right dans l'objet, puis retourne *this. Vous l'utilisez pour remplacer le descripteur BCL stocké par une copie du descripteur BCL stocké dans right.

Exemple

// cliext_collection_adapter_operator_as.cpp 
// compile with: /clr 
#include <cliext/adapter> 
#include <cliext/deque> 
 
typedef cliext::collection_adapter< 
    System::Collections::ICollection> Mycoll; 
int main() 
    { 
    cliext::deque<wchar_t> d1; 
    d1.push_back(L'a'); 
    d1.push_back(L'b'); 
    d1.push_back(L'c'); 
    Mycoll c1(%d1); 
 
// display initial contents " a b c" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
// assign to a new container 
    Mycoll c2; 
    c2 = c1; 
    for each (wchar_t elem in c2) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

Configuration requise

En-tête : <cliext/adapter>

Espace de noms cliext

Voir aussi

Référence

collection_adapter (STL/CLR)