bool empty() const; // C++03
bool empty() const noexcept; // C++11
[[nodiscard]] bool empty() const noexcept; // C++20
bool empty() const noexcept; // C++26
概要
コンテナが空かどうかを判定する
戻り値
コンテナが空であればtrue
、そうでなければfalse
を返す。
例外
投げない
計算量
定数時間
例
#include <iostream>
#include <list>
int main()
{
// 空
{
std::list<int> ls;
bool b = ls.empty();
std::cout << std::boolalpha << b << std::endl;
}
// 空じゃない
{
std::list<int> ls = {1, 2, 3};
bool b = ls.empty();
std::cout << std::boolalpha << b << std::endl;
}
}
出力
true
false
参照
- P0600R1
[[nodiscard]]
in the Library- C++20で
[[nodiscard]]
が付加された
- C++20で
- P2422R1 Remove
nodiscard
annotations from the standard library specification- C++26で
[[nodiscard]]
指定が削除された
- C++26で