collection_adapter : : collection_adapter (STL/CLR)
Construit un objet adaptateur.
collection_adapter();
collection_adapter(collection_adapter<Coll>% right);
collection_adapter(collection_adapter<Coll>^ right);
collection_adapter(Coll^ collection);
Paramètres
collection
Descripteur BCL à inclure.right
Objet à copier.
Notes
Le constructeur :
collection_adapter();
initialise le handle stocké avec nullptr.
Le constructeur :
collection_adapter(collection_adapter<Coll>% right);
initialise le handle stocké avec right.collection_adapter : : base (STL/CLR)().
Le constructeur :
collection_adapter(collection_adapter<Coll>^ right);
initialise le handle stocké avec right->collection_adapter : : base (STL/CLR)().
Le constructeur :
collection_adapter(Coll^ collection);
initialise le descripteur stockée avec avec collection.
Exemple
// cliext_collection_adapter_construct.cpp
// compile with: /clr
#include <cliext/adapter>
#include <cliext/deque>
typedef cliext::collection_adapter<
System::Collections::ICollection> Mycoll;
int main()
{
cliext::deque<wchar_t> d6x(6, L'x');
// construct an empty container
Mycoll c1;
System::Console::WriteLine("base() null = {0}", c1.base() == nullptr);
// construct with a handle
Mycoll c2(%d6x);
for each (wchar_t elem in c2)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// construct by copying another container
Mycoll c3(c2);
for each (wchar_t elem in c3)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
// construct by copying a container handle
Mycoll c4(%c3);
for each (wchar_t elem in c4)
System::Console::Write(" {0}", elem);
System::Console::WriteLine();
return (0);
}
Configuration requise
En-tête : <cliext/adapter>
Espace de noms cliext