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


复杂度

常量。

迭代器有效性

没有变化。

数据竞争

访问容器。
不访问任何包含的元素:并发访问或修改它们是安全的。

异常安全

无异常保证:此成员函数从不抛出异常。

另见