vector::swap

交换两个向量的元素。

void swap(    vector<Type, Allocator>& _Right ); friend void swap(    vector<Type, Allocator >& _Left,    vector<Type, Allocator >& _Right );

参数

  • _Right
    提供要交换的元素的向量,或其元素将要与向量 _Left 的元素进行交换的向量。

  • _Left
    一个向量,其元素将与向量 _Right 的元素进行交换。

示例

// vector_swap.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;   
   vector <int> v1, v2;

   v1.push_back(1);
   v1.push_back(2);
   v1.push_back(3);

   v2.push_back(10);
   v2.push_back(20);

   cout << "The number of elements in v1 = " << v1.size( ) << endl;
   cout << "The number of elements in v2 = " << v2.size( ) << endl;
   cout << endl;

   v1.swap(v2);

   cout << "The number of elements in v1 = " << v1.size( ) << endl;
   cout << "The number of elements in v2 = " << v2.size( ) << endl;
}
  

要求

标头:<vector>

命名空间: std

请参见

参考

vector 类

标准模板库