Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 580 Bytes

File metadata and controls

49 lines (34 loc) · 580 Bytes

clear

  • string[meta header]
  • std[meta namespace]
  • basic_string[meta class]
  • function[meta id-type]
void clear() noexcept;

概要

全ての要素を削除する。

効果

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

戻り値

なし

例外

投げない

#include <cassert>
#include <string>

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

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

  assert(s.empty());
}
  • clear()[color ff0000]
  • s.empty()[link empty.md]

出力

参照