iterator begin(); // (1) C++03
iterator begin() noexcept; // (1) C++11
const_iterator begin() const; // (2) C++03
const_iterator begin() const noexcept; // (2) C++11
概要
先頭要素を指すイテレータを取得する。
戻り値
先頭要素を指すイテレータ
例外
投げない
例
出力
1
1