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

履歴 編集

function
<string>

std::basic_string::clear

void clear();                    // (1) C++03
void clear() noexcept;           // (1) C++11
constexpe void clear() noexcept; // (1) C++20

概要

全ての要素を削除する。

効果

erase(begin(), end());と同じ。

戻り値

なし

例外

投げない

#include <cassert>
#include <string>

int main()
{
  std::string s = "hello";

  // 文字列を空にする
  s.clear();

  assert(s.empty());
}

出力

参照