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

履歴 編集

function
<vector>

std::vector::clear

void clear();           // (1) C++03
constexpr void clear(); // (1) C++20

効果

全ての要素を削除する。

また、要素を指す全ての参照、ポインタ、イテレータが無効になる。past-the-end イテレータも無効になることがある。

戻り値

なし

例外

投げない

事後条件

empty() == true

計算量

線形時間。全ての要素に対してデストラクタを呼び出す。

#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm>

int main()
{
  std::vector<int> v = {1, 2, 3};

  v.clear();

  assert(v.empty());

  std::for_each(v.begin(), v.end(), [](int x) {
    std::cout << x << std::endl;
  });
}

出力

参照