Movatterモバイル変換


[0]ホーム

URL:


cppreference.com
Namespaces
Variants
    Actions

      std::stack<T,Container>::operator=

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

      [edit template]
       
       
       
       
      stack& operator=(const stack& other);
      (1)(implicitly declared)
      stack& operator=( stack&& other);
      (2)(since C++11)
      (implicitly declared)

      Replaces the contents of the container adaptor with the contents of given argument.

      1) Copy assignment operator. Replaces the contents with a copy of the contents ofother. Effectively callsc= other.c;.
      2) Move assignment operator. Replaces the contents with those ofother using move semantics. Effectively callsc= std::move(other.c);.

      Contents

      [edit]Parameters

      other - another container adaptor to be used as source

      [edit]Return value

      *this

      [edit]Complexity

      1,2) Equivalent to that ofoperator= of the underlyingcontainer.

      [edit]Example

      This section is incomplete
      Reason: no example

      [edit]See also

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

      [8]ページ先頭

      ©2009-2025 Movatter.jp