collection_adapter::iterator (STL/CLR)

受控制序列的 iterator 型別。

    typedef T1 iterator;

備註

告訴您未指定型別的物件型別, T1 ,可以做為輸入 iterator 的受控制序列。

範例

// cliext_collection_adapter_iterator.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" 
    Mycoll::iterator it = c1.begin(); 
    for (; it != c1.end(); ++it) 
        System::Console::Write(" {0}", *it); 
    System::Console::WriteLine(); 
    return (0); 
    } 
 
  

需求

標頭: < cliext/介面卡 >

Namespace: cliext

請參閱

參考

collection_adapter (STL/CLR)