std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::size
来自 cppreference.com
size_type size() const noexcept; |
(自 C++23 起) | |
返回容器适配器中的元素数量。等同于 return c.keys.size().
内容 |
[编辑] 参数
(无)
[编辑] 返回值
容器适配器中的元素数量。
[编辑] 复杂度
常数。
[编辑] 示例
以下代码使用 size
显示 std::flat_map
中的元素数量
运行此代码
#include <iostream> #include <flat_map> int main() { std::flat_map<int,char> nums{{1, 'a'}, {3, 'b'}, {5, 'c'}, {7, 'd'}}; std::cout << "nums contains " << nums.size() << " elements.\n"; }
输出
nums contains 4 elements.
[编辑] 另请参阅
检查容器适配器是否为空 (公共成员函数) | |
(C++17)(C++20) |
返回容器或数组的大小 (函数模板) |
返回最大可能的元素数量 (公共成员函数) |