Udostępnij za pośrednictwem


collection_adapter::base (STL/CLR)

Wyznacza zawinięty interfejsu BCL.

Coll^ base();

Uwagi

Element członkowski funkcja zwraca przechowywanych obsługi interfejsu BCL.

Przykład

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

Wymagania

Nagłówek:<cliext i kart>

Przestrzeń nazw: cliext

Zobacz też

Informacje

collection_adapter (STL/CLR)