public member function
<map>

std::multimap::empty

bool empty() const;
bool empty() const noexcept;
測試容器是否為空
Returns whether the multimap container is empty (i.e. whether its size is0).

This function does not modify the container in any way. To clear the content of a multimap container, see multimap::clear.

引數



返回值

trueif the container size is0, false否則為 false。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// multimap::empty
#include <iostream>
#include <map>

int main ()
{
  std::multimap<char,int> mymultimap;

  mymultimap.insert (std::pair<char,int>('b',101));
  mymultimap.insert (std::pair<char,int>('b',202));
  mymultimap.insert (std::pair<char,int>('q',505));

  while (!mymultimap.empty())
  {
     std::cout << mymultimap.begin()->first << " => ";
     std::cout << mymultimap.begin()->second << '\n';
     mymultimap.erase(mymultimap.begin());
  }

  return 0;
}

輸出
b => 101
b => 202
q => 505


複雜度

常量。

迭代器有效性

沒有變化。

資料競爭

訪問容器。
不訪問任何包含的元素:併發訪問或修改它們是安全的。

異常安全

無異常保證:此成員函式從不丟擲異常。

另見