Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

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

      From cppreference.com
      <cpp‎ |container‎ |unordered multimap

      [edit template]
       
       
       
      std::unordered_multimap
      Member types
      Member functions
      Non-member functions
      Deduction guides(C++17)
       
      unordered_multimap& operator=(const unordered_multimap& other);
      (1)(since C++11)
      (constexpr since C++26)
      (2)
      unordered_multimap& operator=( unordered_multimap&& other);
      (since C++11)
      (until C++17)
      unordered_multimap& operator=( unordered_multimap&& other)
         noexcept(/* see below */);
      (since C++17)
      (constexpr since C++26)
      unordered_multimap& operator=(std::initializer_list<value_type> ilist);
      (3)(since C++11)
      (constexpr since C++26)

      Replaces the contents of the container.

      Lettraits bestd::allocator_traits<allocator_type>:

      1) Copy assignment operator. Replaces the contents with a copy of the contents ofother.
      Iftraits::propagate_on_container_copy_assignment::value istrue, the allocator of*this is replaced by a copy ofother. If the allocator of*this after assignment would compare unequal to its old value, the old allocator is used to deallocate the memory, then the new allocator is used to allocate it before copying the elements. Otherwise, the memory owned by*this may be reused when possible. In any case, the elements originally belonging to*this may be either destroyed or replaced by element-wise copy-assignment.
      2) Move assignment operator. Replaces the contents with those ofother using move semantics (i.e. the data inother is moved fromother into this container).other is in a valid but unspecified state afterwards.
      Iftraits::propagate_on_container_move_assignment::value istrue, the allocator of*this is replaced by a copy of that ofother. If it isfalse and the allocators of*this andother do not compare equal,*this cannot take ownership of the memory owned byother and must move-assign each element individually, allocating additional memory using its own allocator as needed. In any case, all elements originally belonging to*this are either destroyed or replaced by element-wise move-assignment.
      3) Replaces the contents with those identified by initializer listilist.

      Contents

      [edit]Parameters

      other - another container to use as data source
      ilist - initializer list to use as data source

      [edit]Return value

      *this

      [edit]Complexity

      1) Linear in the size of*this andother.
      2) Linear in the size of*this unless the allocators do not compare equal and do not propagate, in which case linear in the size of*this andother.
      3) Linear in the size of*this andilist.

      [edit]Exceptions

      2)
      noexcept specification:  
      noexcept(std::allocator_traits<Allocator>::is_always_equal::value

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

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

      [edit]Notes

      After container move assignment (overload(2)), unless element-wise move assignment is forced by incompatible allocators, references, pointers, and iterators (other than the end iterator) toother remain valid, but refer to elements that are now in*this. The current standard makes this guarantee via the blanket statement in[container.reqmts]/67, and a more direct guarantee is under consideration viaLWG issue 2321.

      [edit]Example

      The following code usesoperator= to assign onestd::unordered_multimap to another:

      Run this code
      #include <initializer_list>#include <iostream>#include <iterator>#include <unordered_map>#include <utility> void print(constauto comment,constauto& container){auto size=std::size(container);std::cout<< comment<<"{ ";for(constauto&[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;constauto w={std::pair<constint,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);}

      Possible output:

      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} }

      [edit]See also

      constructs theunordered_multimap
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/container/unordered_multimap/operator%3D&oldid=136057"

      [8]ページ先頭

      ©2009-2025 Movatter.jp