map::begin (STL/CLR)
指定受控制序列的開頭。
iterator begin();
備註
成員函式會傳回種雙向 iterator,指派受控制序列中,或只是超出空序列結尾的第一個項目。您要用它來取得的 Iterator 可指定受控制序列之 current 開頭,但是,如果受控制序列的長度變更,它的狀態也可以變更。
範例
// cliext_map_begin.cpp
// compile with: /clr
#include <cliext/map>
typedef cliext::map<wchar_t, int> Mymap;
int main()
{
Mymap c1;
c1.insert(Mymap::make_value(L'a', 1));
c1.insert(Mymap::make_value(L'b', 2));
c1.insert(Mymap::make_value(L'c', 3));
// display contents " [a 1] [b 2] [c 3]"
for each (Mymap::value_type elem in c1)
System::Console::Write(" [{0} {1}]", elem->first, elem->second);
System::Console::WriteLine();
// inspect first two items
Mymap::iterator it = c1.begin();
System::Console::WriteLine("*begin() = [{0} {1}]",
it->first, it->second);
++it;
System::Console::WriteLine("*++begin() = [{0} {1}]",
it->first, it->second);
return (0);
}
需求
標頭: < cliext/地圖 >
Namespace: cliext