std::map<Key,T,Compare,Allocator>::merge
来自 cppreference.com
template< class C2 > void merge( std::map<Key, T, C2, Allocator>& source ); |
(1) | (自 C++17) |
template< class C2 > void merge( std::map<Key, T, C2, Allocator>&& source ); |
(2) | (自 C++17) |
template< class C2 > void merge( std::multimap<Key, T, C2, Allocator>& source ); |
(3) | (自 C++17) |
template< class C2 > void merge( std::multimap<Key, T, C2, Allocator>&& source ); |
(4) | (自 C++17) |
尝试使用*this的比较对象,从source中提取(“拼接”)每个元素并将其插入到*this中。如果*this中存在一个元素,其键与source中元素的键等效,则该元素不会从source中提取。不会复制或移动任何元素,仅重新指向容器节点的内部指针。所有指向和引用已传输元素的指针和引用仍然有效,但现在引用的是*this,而不是source。
如果get_allocator() != source.get_allocator(),则行为未定义。
内容 |
[编辑] 参数
source | - | 要从中传输节点的兼容容器 |
[编辑] 返回值
(无)
异常
除非比较抛出异常,否则不会抛出异常。
[编辑] 复杂度
N * log(size() + N)), 其中 N 是source.size()。
[编辑] 示例
运行此代码
#include <iostream> #include <map> #include <string> int main() { std::map<int, std::string> ma{{1, "apple"}, {5, "pear"}, {10, "banana"}}; std::map<int, std::string> mb{{2, "zorro"}, {4, "batman"}, {5, "X"}, {8, "alpaca"}}; std::map<int, std::string> u; u.merge(ma); std::cout << "ma.size(): " << ma.size() << '\n'; u.merge(mb); std::cout << "mb.size(): " << mb.size() << '\n'; std::cout << "mb.at(5): " << mb.at(5) << '\n'; for (auto const& kv : u) std::cout << kv.first << ", " << kv.second << '\n'; }
输出
ma.size(): 0 mb.size(): 1 mb.at(5): X 1, apple 2, zorro 4, batman 5, pear 8, alpaca 10, banana
[编辑] 另请参阅
(C++17) |
从容器中提取节点 (公共成员函数) |
插入元素 或节点(自 C++17) (公共成员函数) |