public member function
<map>

std::multimap::size

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

Parameters

none

Return Value

The number of elements in the container.

Member type size_type is an unsigned integral type.

Example

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

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

  mymultimap.insert(std::make_pair('x',100));
  mymultimap.insert(std::make_pair('y',200));
  mymultimap.insert(std::make_pair('y',350));
  mymultimap.insert(std::make_pair('z',500));

  std::cout << "mymultimap.size() is " << mymultimap.size() << '\n';

  return 0;
}

Output:
mymultimap.size() is 4


Complexity

Constant.

Iterator validity

No changes.

Data races

The container is accessed.
No elements are accessed: concurrently accessing or modifying them is safe.

Exception safety

No-throw guarantee: this member function never throws exceptions.

See also