list::const_iterator (STL/CLR)
用於受控制序列的常數迭代器類型。
typedef T2 const_iterator;
備註
此型別描述其可以為此控制序列當做常數隨機讀取迭代器之未指定型別 T2 的物件。
範例
// cliext_list_const_iterator.cpp
// compile with: /clr
#include <cliext/list>
int main()
{
cliext::list<wchar_t> c1;
c1.push_back(L'a');
c1.push_back(L'b');
c1.push_back(L'c');
// display contents " a b c"
cliext::list<wchar_t>::const_iterator cit = c1.begin();
for (; cit != c1.end(); ++cit)
System::Console::Write(" {0}", *cit);
System::Console::WriteLine();
return (0);
}
需求
標頭 : <cliext/list>
命名空間: cliext