Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/queue/operator="

From cppreference.com
< cpp‎ | container‎ | queue
m (Text replace - "{{cpp/container/operator{{=}}" to "{{include page|cpp/container/operator{{=}}")
m (langlinks)
 
Line 1: Line 1:
 
{{include page|cpp/container/operator{{=}} ad|queue}}
 
{{include page|cpp/container/operator{{=}} ad|queue}}
  
[[de:cpp/container/queue/operator=]]
+
{{langlinks|cs|de|es|fr|it|ja|pl|pt|ru|tr|zh}}
[[es:cpp/container/queue/operator=]]
+
[[fr:cpp/container/queue/operator=]]
+
[[it:cpp/container/queue/operator=]]
+
[[ja:cpp/container/queue/operator=]]
+
[[pt:cpp/container/queue/operator=]]
+
[[ru:cpp/container/queue/operator=]]
+
[[zh:cpp/container/queue/operator=]]
+

Latest revision as of 07:12, 20 November 2021

 
 
 
 
queue& operator=( const queue& other );
(1) (implicitly declared)
queue& operator=( queue&& 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 of other. Effectively calls c = other.c;.
2) Move assignment operator. Replaces the contents with those of other using move semantics. Effectively calls c = 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 of operator= of the underlying container.

[edit] Example

[edit] See also

constructs the queue
(public member function) [edit]