命名空间
变体
操作

std::flat_map<Key,T,Compare,KeyContainer,MappedContainer>::erase

来自 cppreference.com
< cpp‎ | 容器‎ | 平面映射
 
 
 
 
iterator erase( iterator position );
(1) (自 C++23 起)
iterator erase( const_iterator pos );
(2) (自 C++23 起)
iterator erase( const_iterator first, const_iterator last );
(3) (自 C++23 起)
size_type erase( const Key& key );
(4) (自 C++23 起)
template< class K >
size_type erase( K&& x );
(5) (自 C++23 起)

从容器中移除指定元素。

1,2) 移除 pos 位置的元素。
3) 移除范围 [firstlast) 中的元素,该范围必须是 *this 中的有效范围。
4) 移除具有与 key 等效的键的元素(如果存在)。
5) 移除所有具有与值 x 等效 的键的元素。只有在限定 ID Compare::is_transparent 有效并且表示一个类型,以及 iteratorconst_iterator 不能从 K 隐式转换时,此重载才会参与重载解析。它允许在不构建 Key 实例的情况下调用此函数。

迭代器 pos 必须有效且可解引用。因此,end() 迭代器(有效但不可解引用)不能用作 pos 的值。

内容

[编辑] 参数

pos - 指向要移除的元素的迭代器
first, last - 要移除的元素范围
key - 要移除的元素的键值
x - 任何可以与表示要移除的元素的键透明地比较的类型的值

[编辑] 返回值

1-3) 最后一个被移除的元素之后的迭代器。
4) 被移除的元素数量(0 或 1)。
5) 被移除的元素数量。

[编辑] 异常

1-3) 不抛出任何异常。
4,5)Compare 对象抛出的任何异常。

[编辑] 复杂度

取决于底层容器。通常为线性。

[编辑] 示例

#include <flat_map>
#include <iostream>
 
int main()
{
    std::flat_map<int, std::string> c =
    {
        {1, "one"}, {2, "two"}, {3, "three"},
        {4, "four"}, {5, "five"}, {6, "six"}
    };
 
    // erase all odd numbers from c
    for (auto it = c.begin(); it != c.end();)
    {
        if (it->first % 2 != 0)
            it = c.erase(it);
        else
            ++it;
    }
 
    for (auto& p : c)
        std::cout << p.second << ' ';
    std::cout << '\n';
}

输出

two four six

[编辑] 另请参阅

清除内容
(公共成员函数) [编辑]