A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.tutorialspoint.com/cpp_standard_library/cpp_vector_copy_constructor.htm below:

C++ Vector Library - vector() Function

C++ Vector Library - vector() Function Description

The C++ copy constructor std::vector::vector() constructs a container with copy of each elements present in existing container x.

Declaration

Following is the declaration for copy constructor std::vector::vector() form std::vector header.

C++98
vector (const vector& x);
C++11
vector (const vector& x, const allocator_type& alloc);
Parameters

x − Another vector container of same type.

Return value

Constructor never returns value.

Exceptions

This member function never throws exception.

Time complexity

Linear i.e. O(n)

Example

The following example shows the usage of copy constructor std::vector::vector().

#include <iostream>
#include <vector>

using namespace std;

int main(void) {
   vector<int> v1(5);

   /* assign value to vector v1 */
   for (int i = 0; i < v1.size(); ++i)
      v1[i] = i + 1;

   /* create a copy constructor v2 from v1 */
   vector<int> v2(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