C++ 向量库 - vector() 函数


描述

C++ 移动构造函数std::vector::vector()使用移动语义构造包含 other 内容的容器。

如果未提供alloc,则通过移动构造从属于其他的分配器获得分配器。

宣言

以下是移动构造函数 std::vector::vector() 形式 std::vector 标头的声明。

C++11

vector (vector&& x);
vector (vector&& x, const allocator_type& alloc);

参数

x - 另一个相同类型的向量容器。

返回值

构造函数永远不会返回值。

例外情况

该成员函数从不抛出异常。

时间复杂度

线性即 O(n)

例子

以下示例显示了移动构造函数 std::vector::vector() 的用法。

#include <iostream>
#include <vector>

using namespace std;

int main(void) {
   /* create fill constructor */
   vector<int> v1(5, 123);

   cout << "Elements of vector v1 before move constructor" << endl;
   for (int i = 0; i < v1.size(); ++i)
      cout << v1[i] << endl;

   /* create constructor using move semantics */
   vector<int> v2(move(v1));

   cout << "Elements of vector v1 after move constructor" << endl;
   for (int i = 0; i < v1.size(); ++i)
      cout << v1[i] << endl;

   cout << "Element of vector v2" << endl;
   for (int i = 0; i < v2.size(); ++i)
      cout << v2[i] << endl;

   return 0;
}

让我们编译并运行上面的程序,这将产生以下结果 -

Elements of vector v1 before move constructor
123
123
123
123
123
Elements of vector v1 after move constructor
Element of vector v2
123
123
123
123
123
矢量.htm