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

履歴 編集

function
<map>

std::map::empty

bool empty() const;                        // C++03
bool empty() const noexcept;               // C++11
[[nodiscard]] bool empty() const noexcept; // C++20

概要

コンテナが空かどうかをテストする。 map コンテナが空(size() が 0)の場合に true を返す。

この関数はコンテナ内のコンテンツを変化させない。コンテンツをクリアするには clear() メンバを使う。

戻り値

コンテナサイズが 0 のときに true, そうでないときに false

計算量

定数時間。

#include <iostream>
#include <map>

int main ()
{
  std::map<int, char> m;

  std::cout << m.empty() << std::endl;

  m.insert(std::make_pair(42, 'a'));

  std::cout << m.empty() << std::endl;

  return 0;
}

出力

1
0

関連項目

名前 説明
map::insert 要素を挿入する
map::(constructor) コンストラクタ

参照