std::map<Key,T,Compare,Allocator>::try_emplace

来自cppreference.com
< cpp‎ | container‎ | map

 
 
 
 
template< class... Args >
std::pair<iterator, bool> try_emplace( const Key& k, Args&&... args );
(1) (C++17 起)
template< class... Args >
std::pair<iterator, bool> try_emplace( Key&& k, Args&&... args );
(2) (C++17 起)
template< class K, class... Args >
std::pair<iterator, bool> try_emplace( K&& k, Args&&... args );
(3) (C++26 起)
template< class... Args >
iterator try_emplace( const_iterator hint, const Key& k, Args&&... args );
(4) (C++17 起)
template< class... Args >
iterator try_emplace( const_iterator hint, Key&& k, Args&&... args );
(5) (C++17 起)
template< class K, class... Args >
iterator try_emplace( const_iterator hint, K&& k, Args&&... args );
(6) (C++26 起)

如果容器中已经存在等价于 k 的键,则不做任何事。否则,向容器插入具有键 k 和以 args 构造的值的新元素。这种情况下:

1) 行为类似 emplace,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(k),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
2) 行为类似 emplace,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(std::move(k)),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
3) 行为类似 emplace,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(std::forward<K>(k)),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
4) 行为类似 emplace_hint,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(k),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
5) 行为类似 emplace_hint,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(std::move(k)),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
6) 行为类似 emplace_hint,但以
value_type(std::piecewise_construct,

           std::forward_as_tuple(std::forward<K>(k)),

           std::forward_as_tuple(std::forward<Args>(args)...))
构造元素。
1-6) 如果 value_type 从对应表达式不可就位构造 (EmplaceConstructible) map 中,那么行为未定义。
3) 此重载只有在满足以下所有条件时才会参与重载决议:
如果 equal_range(u.first) == equal_range(k)false,那么行为未定义,其中 u 是待插入的新元素。
6) 此重载只有在 限定标识 Compare::is_transparent 合法并代表某个类型时才会参与重载决议。
如果 equal_range(u.first) == equal_range(k)false,那么行为未定义,其中 u 是待插入的新元素。

没有迭代器或引用会失效。

参数

k - 用于查找和在找不到时插入的键
hint - 指向位置的迭代器,新元素将插入到它之前
args - 转发给元素构造函数的实参

返回值

1-3)emplace
4-6)emplace_hint

复杂度

1-3)emplace
4-6)emplace_hint

注解

insertemplace 不同,如果没有插入,那么这些函数不会移动右值实参,这样操纵仅移动类型的值的映射会更容易,例如 std::map<std::string, std::unique_ptr<foo>>。另外,try_emplace 分开处理键和给 mapped_type 的实参,这点与要求实参构造 value_type(即一个 std::pair)的 emplace 不同。

重载 (3,6) 在不构造 Key 类型对象的情况下也可以调用。

功能特性测试 标准 功能特性
__cpp_lib_map_try_emplace 201411L (C++17) std::map::try_emplace, std::map::insert_or_assign
__cpp_lib_associative_heterogeneous_insertion 202311L (C++26) 有序无序关联容器中剩余成员函数的异质重载。重载 (3)(6)

示例

#include <iostream>
#include <string>
#include <map>
#include <utility>
 
void print_node(const auto& node)
{
    std::cout << '[' << node.first << "] = " << node.second << '\n';
}
 
void print_result(auto const& pair)
{
    std::cout << (pair.second ? "插入:" : "忽略:");
    print_node(*pair.first);
}
 
int main()
{
    using namespace std::literals;
    std::map<std::string, std::string> m;
 
    print_result(m.try_emplace("a", "a"s));
    print_result(m.try_emplace("b", "abcd"));
    print_result(m.try_emplace("c", 10, 'c'));
    print_result(m.try_emplace("c", "Won't be inserted"));
 
    for (const auto& p : m)
        print_node(p);
}

输出:

插入:[a] = a
插入:[b] = abcd
插入:[c] = cccccccccc
忽略:[c] = cccccccccc
[a] = a
[b] = abcd
[c] = cccccccccc

参阅

(C++11)
原位构造元素
(公开成员函数)
使用提示原位构造元素
(公开成员函数)
插入元素或节点 (C++17 起)
(公开成员函数)