公共成员函数
<unordered_map>

std::unordered_map::size

size_type size() const noexcept;
返回容器大小
返回 unordered_map 容器中的元素数量。

参数



返回值

容器中的元素数量。

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

示例

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

int main ()
{
  std::unordered_map<std::string,double> mymap = {
       {"milk",2.30},
       {"potatoes",1.90},
       {"eggs",0.40}
  };

  std::cout << "mymap.size() is " << mymap.size() << std::endl;

  return 0;
}

输出
mymap.size() is 3


复杂度

常量。

迭代器有效性

没有变化。

另见