Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::deque<T,Allocator>::emplace

      From cppreference.com
      <cpp‎ |container‎ |deque

      [edit template]
       
       
       
      std::deque
      Member types
      Member functions
      Non-member functions
      (until C++20)(until C++20)(until C++20)(until C++20)(until C++20)
      Deduction guides(C++17)
       
      template<class...Args>
      iterator emplace( const_iterator pos, Args&&...args);
      (since C++11)
      (constexpr since C++26)

      Inserts a new element into the container directly beforepos.

      The element is constructed throughstd::allocator_traits::construct, which typically uses placementnew to construct the element in-place at a location provided by the container. However, if the required location has been occupied by an existing element, the inserted element is constructed at another location at first, and then move assigned into the required location.

      The argumentsargs... are forwarded to the constructor asstd::forward<Args>(args)....args... may directly or indirectly refer to a value in the container.

      All iterators (including theend() iterator) are invalidated. References are invalidated too, unlesspos== begin() orpos== end(), in which case they are not invalidated.

      Contents

      [edit]Parameters

      pos - iterator before which the new element will be constructed
      args - arguments to forward to the constructor of the element
      Type requirements
      -
      If any of the following conditions is satisfied, the behavior is undefined:

      [edit]Return value

      Iterator pointing to the emplaced element.

      [edit]Complexity

      Linear in the lesser of the distances betweenpos and either of the ends of the container.

      [edit]Exceptions

      If an exception is thrown other than by the copy constructor, move constructor, assignment operator, or move assignment operator of theT, or if an exception is thrown whileemplace is used to insert a single element at the either end, there are no effects (strong exception guarantee).

      Otherwise, the effects are unspecified.

      Example

      Run this code
      #include <iostream>#include <string>#include <deque> struct A{std::string s;     A(std::string str): s(std::move(str)){std::cout<<" constructed\n";}     A(const A& o): s(o.s){std::cout<<" copy constructed\n";}     A(A&& o): s(std::move(o.s)){std::cout<<" move constructed\n";}     A& operator=(const A& other){        s= other.s;std::cout<<" copy assigned\n";return*this;}     A& operator=(A&& other){        s= std::move(other.s);std::cout<<" move assigned\n";return*this;}}; int main(){std::deque<A> container; std::cout<<"construct 2 times A:\n";    A two{"two"};    A three{"three"}; std::cout<<"emplace:\n";    container.emplace(container.end(),"one"); std::cout<<"emplace with A&:\n";    container.emplace(container.end(), two); std::cout<<"emplace with A&&:\n";    container.emplace(container.end(), std::move(three)); std::cout<<"content:\n";for(constauto& obj: container)std::cout<<' '<< obj.s;std::cout<<'\n';}

      Output:

      construct 2 times A: constructed constructedemplace: constructedemplace with A&: copy constructedemplace with A&&: move constructedcontent: one two three

      [edit]Defect reports

      The following behavior-changing defect reports were applied retroactively to previously published C++ standards.

      DRApplied toBehavior as publishedCorrect behavior
      LWG 2164C++11it was unclear whether the arguments can refer to the containermade clear

      [edit]See also

      inserts elements
      (public member function)[edit]
      constructs an element in-place at the end
      (public member function)[edit]
      Retrieved from "https://en.cppreference.com/mwiki/index.php?title=cpp/container/deque/emplace&oldid=124995"

      [8]ページ先頭

      ©2009-2025 Movatter.jp