vector::swap
2 二つのベクターの要素を交換します。
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