最終更新日時(UTC):
が更新

履歴 編集

function
<forward_list>

std::forward_list::end(C++11)

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

処理系

参照