X Tutup
The Wayback Machine - https://web.archive.org/web/20180303160407/http://ja.cppreference.com:80/w/cpp/container/map/empty
名前空間
変種
操作

std::map::empty

提供: cppreference.com
< cpp‎ | container‎ | map

bool empty() const;
小切手コンテナに要素がない場合、すなわちかどうかbegin() == end().
Original:
Checks if the container has no elements, i.e. whether begin() == end().
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

目次

[編集] パラメータ

(なし)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] 値を返します

true容器が空であれば、そうでなければfalse
Original:
true if the container is empty, false otherwise
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集] 例外

noexcept specification:  
noexcept
  (C++11およびそれ以降)

[編集] 複雑

定数
Original:
Constant
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[編集]

次のコードは、emptyに要素が含まれているかどうかをチェックするためにstd::map<int>使用しています
Original:
The following code uses empty to check if a std::map<int> contains any elements:
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

#include <map>
#include <iostream>
 
int main()
{
    std::map<int> numbers;
    std::cout << "Initially, numbers.empty(): " << numbers.empty() << '\n';
 
    numbers.push_back(42);
    numbers.push_back(13317); 
    std::cout << "After adding elements, numbers.empty(): " << numbers.empty() << '\n';
}

出力:

Initially, numbers.empty(): 1
After adding elements, numbers.empty(): 0

See also

要素数を返します
Original:
returns the number of elements
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

(パブリックメンバ関数) [edit]
X Tutup