命名空间
变体
操作

std::unordered_multimap<Key,T,Hash,KeyEqual,Allocator>::operator=

来自 cppreference.cn
 
 
 
 
unordered_multimap& operator=( const unordered_multimap& other );
(1) (C++11 起)
(2)
unordered_multimap& operator=( unordered_multimap&& other );
(C++11 起)
(C++17 前)
unordered_multimap& operator=( unordered_multimap&& other ) noexcept(/* 见下文 */);
(C++17 起)
unordered_multimap& operator=( std::initializer_list<value_type> ilist );
(3) (C++11 起)

替换容器的内容。

1) 复制赋值运算符。用 `other` 内容的副本替换内容。
如果 std::allocator_traits<allocator_type>::propagate_on_container_copy_assignment::valuetrue,则 *this 的分配器将被 other 的副本替换。如果赋值后 *this 的分配器与旧值比较不相等,则旧分配器用于释放内存,然后新分配器用于在复制元素之前分配内存。否则,*this 所拥有的内存可以在可能的情况下被重用。在任何情况下,最初属于 *this 的元素可能会被销毁或被逐元素复制赋值替换。
2) 移动赋值运算符。使用移动语义(即,将 other 中的数据从 other 移动到此容器中)替换内容。之后,other 处于有效但未指定的状态。
如果 std::allocator_traits<allocator_type>::propagate_on_container_move_assignment::valuetrue,则 *this 的分配器将由 other 的分配器副本替换。如果为 false*thisother 的分配器不相等,则 *this 不能拥有 other 所拥有的内存,必须逐个移动赋值每个元素,并根据需要使用自己的分配器分配额外内存。在任何情况下,所有最初属于 *this 的元素要么被销毁,要么被逐元素移动赋值替换。
3) 用初始化列表 ilist 标识的内容替换内容。

目录

[编辑] 参数

其他 - 另一个容器,用作数据源
ilist - 初始化列表,用作数据源

[编辑] 返回值

*this

[编辑] 复杂度

1) 与 `*this` 和 `other` 的大小呈线性关系。
2) 除非分配器不相等且不传播,否则与 *this 的大小成线性关系,在这种情况下,与 *thisother 的大小成线性关系。
3)*thisilist 的大小呈线性关系。

[编辑] 异常

1-3) 可能抛出实现定义的异常。
(C++17 前)
1,3) 可能抛出实现定义的异常。
2)
noexcept 规范:  
noexcept(std::allocator_traits<Allocator>::is_always_equal::value

&& std::is_nothrow_move_assignable<Hash>::value

&& std::is_nothrow_move_assignable<Pred>::value)
(C++17 起)

[编辑] 注意

容器移动赋值 (重载 (2)) 后,除非因不兼容的分配器强制逐元素移动赋值,指向 `other` 的引用、指针和迭代器(除了尾迭代器)仍然有效,但它们引用现在在 *this 中的元素。当前的 C++ 标准通过 [container.reqmts]/67 中的通用声明提供此保证,并且 LWG issue 2321 正在考虑更直接的保证。

[编辑] 示例

以下代码使用 operator= 将一个 std::unordered_multimap 赋值给另一个

#include <initializer_list>
#include <iostream>
#include <iterator>
#include <unordered_map>
#include <utility>
 
void print(auto const comment, auto const& container)
{
    auto size = std::size(container);
    std::cout << comment << "{ ";
    for (auto const& [key, value] : container)
        std::cout << '{' << key << ',' << value << (--size ? "}, " : "} ");
    std::cout << "}\n";
}
 
int main()
{
    std::unordered_multimap<int, int> x{{1,1}, {2,2}, {3,3}}, y, z;
    const auto w = {std::pair<const int, int>{4,4}, {5,5}, {6,6}, {7,7}};
 
    std::cout << "Initially:\n";
    print("x = ", x);
    print("y = ", y);
    print("z = ", z);
 
    std::cout << "Copy assignment copies data from x to y:\n";
    y = x;
    print("x = ", x);
    print("y = ", y);
 
    std::cout << "Move assignment moves data from x to z, modifying both x and z:\n";
    z = std::move(x);
    print("x = ", x);
    print("z = ", z);
 
    std::cout << "Assignment of initializer_list w to z:\n";
    z = w;
    print("w = ", w);
    print("z = ", z);
}

可能的输出

Initially:
x = { {3,3}, {2,2}, {1,1} }
y = { }
z = { }
Copy assignment copies data from x to y:
x = { {3,3}, {2,2}, {1,1} }
y = { {3,3}, {2,2}, {1,1} }
Move assignment moves data from x to z, modifying both x and z:
x = { }
z = { {3,3}, {2,2}, {1,1} }
Assignment of initializer_list w to z:
w = { {4,4}, {5,5}, {6,6}, {7,7} }
z = { {7,7}, {6,6}, {5,5}, {4,4} }

[编辑] 参阅

构造 unordered_multimap
(public member function) [编辑]