被制御シーケンスの反復子の型です。
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