The C++ function std::vector::operator=() move the contents of one vector into another and modifies size if necessary.
DeclarationFollowing is the declaration for std::vector::operator=() function form std::vector header.
C++98vector& operator= (vector&& x);Parameters
x − another vector container of same type.
Return valueReturns this pointer.
ExceptionsThis member function never throws exception.
Time complexityLinear i.e. O(n)
ExampleThe following example shows the usage of std::vector::operator=() function.
#include <iostream> #include <vector> using namespace std; int main(void) { vector<int> v1 = {1, 2, 3, 4, 5}; vector<int> v2; /* assignment using move construct */ v2 = move(v1); for (int i = 0; i < v2.size(); ++i) cout << v2[i] << endl; return 0; }
Let us compile and run the above program, this will produce the following result −
1 2 3 4 5
vector.htm
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4