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/适配器>

命名空间: cliext

请参见

参考

collection_adapter (STL/CLR)