iterator end() noexcept;
const_iterator end() const noexcept;
概要
末尾の次を指すイテレータを取得する。
戻り値
末尾の次を指すイテレータ
例外
投げない
備考
- この関数によって返されるイテレータは、
*this
が保持するいずれの要素も参照しない。その指す先は、不正な範囲となるだろう
例
#include <iostream>
#include <forward_list>
int main()
{
std::forward_list<int> ls = {1, 2, 3};
const std::forward_list<int>& cls = ls;
decltype(ls)::iterator i = ls.begin();
decltype(ls)::iterator last = ls.end();
decltype(ls)::const_iterator ci = cls.begin();
decltype(ls)::const_iterator clast = cls.end();
for (; i != last; ++i) {
std::cout << *i << std::endl;
}
for (; ci != clast; ++ci) {
std::cout << *ci << std::endl;
}
}
出力
1
2
3
1
2
3
バージョン
言語
- C++11
処理系
- Clang: ??
- GCC: 4.7.0 ✅
- ICC: ??
- Visual C++: 2010 ✅, 2012 ✅, 2013 ✅, 2015 ✅, 2017 ✅