次の方法で共有


collection_adapter::collection_adapter (STL/CLR)

アダプター オブジェクトを構築します。

    collection_adapter();
    collection_adapter(collection_adapter<Coll>% right);
    collection_adapter(collection_adapter<Coll>^ right);
    collection_adapter(Coll^ collection);

パラメーター

  • コレクション
    ラップする BCL のハンドル。

  • [right]
    コピーへのオブジェクト。

解説

次のコンストラクターを見てください。

collection_adapter();

nullptrの格納されているハンドルを初期化します。

次のコンストラクターを見てください。

collection_adapter(collection_adapter<Coll>% right);

right.collection_adapter::base (STL/CLR)()の格納されているハンドルを初期化します。

次のコンストラクターを見てください。

collection_adapter(collection_adapter<Coll>^ right);

right->collection_adapter::base (STL/CLR)()の格納されているハンドルを初期化します。

次のコンストラクターを見てください。

collection_adapter(Coll^ collection);

collectionの格納されているハンドルを初期化します。

使用例

// 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); 
    } 
 
  

必要条件

ヘッダー: <cliext とアダプター>

名前空間: の cliext

参照

関連項目

collection_adapter (STL/CLR)

collection_adapter::operator= (STL/CLR)