The C++ initializer list constructor std::vector::vector() constructs a container from initializer list.
DeclarationFollowing is the declaration for initializer list constructor std::vector::vector() form std::vector header.
C++11vector (initializer_list<value_type> ilist, const allocator_type& alloc = allocator_type());Parameters
ilist − Initializer list to assign values to vector.
Return valueConstructor never returns value.
ExceptionsThis member function never throws exception.
Time complexityLinear i.e. O(n)
ExampleThe following example shows the usage of initializer list constructor std::vector::vector().
#include <iostream> #include <vector> using namespace std; int main(void) { auto il = {1, 2, 3, 4, 5}; /* create vector from initializer list */ vector<int> v(il); for (int i = 0; i < v.size(); ++i) cout << v[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