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

履歴 編集

function
<iterator>

std::move_iterator::base(C++11)

Iterator base() const;                              // (1) C++11
constexpr Iterator base() const;                    // (1) C++17
constexpr const Iterator& base() const & noexcept;  // (1) C++20

constexpr Iterator base() &&;   // (2)

概要

メンバ変数として保持している、元のイテレータを取得する。

戻り値

  • (1)
    • C++17まで : 元のイテレータをコピーして返す。
    • C++20 : 元のイテレータへのconst参照を返す。
  • (2) : 元のイテレータをムーブして返す。

#include <iostream>
#include <vector>
#include <memory>
#include <iterator>

int main()
{
  std::vector<std::unique_ptr<int>> v;
  for (int i = 0; i < 5; ++i)
    v.emplace_back(new int(i));

  std::move_iterator<decltype(v)::iterator> it1(v.begin());

  decltype(v)::iterator base = it1.base();
  std::cout << **base << std::endl;
}

出力

0

バージョン

言語

  • C++11

処理系

参照