次の方法で共有


collection_adapter::base (STL/CLR)

ラップされた BCL インターフェイスを指定します。

    Coll^ base();

解説

メンバー関数は、格納されている BCL インターフェイス ハンドルを返します。

使用例

// cliext_collection_adapter_base.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'); 
    Mycoll c1(%d6x); 
 
// display initial contents " x x x x x x" 
    for each (wchar_t elem in c1) 
        System::Console::Write(" {0}", elem); 
    System::Console::WriteLine(); 
 
    System::Console::WriteLine("base() same = {0}", c1.base() == %c1); 
    return (0); 
    } 
 
  

必要条件

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

名前空間: の cliext

参照

関連項目

collection_adapter (STL/CLR)