public member function
<set>

std::multiset::size

size_type size() const;
size_type size() const noexcept;
Return container size
Returns the number of elements in the multiset container.

参数



返回值

容器中的元素数量。

成员类型size_type是一种无符号整型类型。

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// multiset::size
#include <iostream>
#include <set>

int main ()
{
  std::multiset<int> myints;
  std::cout << "0. size: " << myints.size() << '\n';

  for (int i=0; i<10; i++) myints.insert(i);
  std::cout << "1. size: " << myints.size() << '\n';

  myints.insert (5);
  std::cout << "2. size: " << myints.size() << '\n';

  myints.erase (5);
  std::cout << "3. size: " << myints.size() << '\n';

  return 0;
}

输出
0. size: 0
1. size: 10
2. size: 11
3. size: 9


复杂度

常量。

迭代器有效性

没有变化。

数据竞争

访问容器。
同时访问 multiset 的元素是安全的。

异常安全

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

另见