collection_adapter::iterator (STL/CLR)

受控序列的迭代器的类型。

    typedef T1 iterator;

备注

类型描述可以为控制序列作为输入迭代器的未指定的 T1 类型的对象。

示例

// 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/adapter>

命名空间: cliext

请参见

参考

collection_adapter (STL/CLR)