命名空间
变体
操作

std::flat_multimap<Key,T,Compare,KeyContainer,MappedContainer>::clear

来自 cppreference.com
 
 
 
 
void clear() noexcept;
(自 C++23 起)

从容器适配器中删除所有元素。 此调用后,size() 返回零。

使任何引用、指针和迭代器失效,这些引用、指针和迭代器引用包含的元素。

内容

[编辑] 参数

(无)

[编辑] 返回值

(无)

[编辑] 复杂度

容器适配器的尺寸线性,即元素数量。

[编辑] 示例

#include <iostream>
#include <string_view>
#include <flat_map>
 
void print_info(std::string_view rem, const std::flat_multimap<int, char>& v)
{
    std::cout << rem << "{ ";
    for (const auto& [key, value] : v)
        std::cout << '[' << key << "]:" << value << ' ';
    std::cout << "}\n";
    std::cout << "Size=" << v.size() << '\n';
}
 
int main()
{
    std::flat_multimap<int, char> container{{1, 'x'}, {2, 'y'}, {3, 'z'}};
    print_info("Before clear: ", container);
    container.clear();
    print_info("After clear: ", container);
}

输出

Before clear: { [1]:x [2]:y [3]:z }
Size=3
After clear: { }
Size=0

[编辑] 另请参阅

删除元素
(公共成员函数) [编辑]