次の方法で共有


deque::swap

2 個の deques の要素を交換します。

void swap(
   deque<Type, Allocator>& _Right
);
friend void swap(
   deque<Type, Allocator>& _Left,
   deque<Type, Allocator>& _Right
)
template<class Type, class Allocator>
void swap(
   deque< Type, Allocator>& _Left, 
   deque< Type, Allocator>& _Right
);

パラメーター

  • _Right
    交換する要素を提供する要素は、deque _Leftの要素と交換される deque または deque。

  • _Left
    要素が deque _Rightの要素と交換される deque。

使用例

// deque_swap.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>

int main( ) 
{
   using namespace std;
   deque <int> c1, c2, c3;
   deque <int>::iterator c1_Iter;

   c1.push_back( 1 );
   c1.push_back( 2 );
   c1.push_back( 3 );
   c2.push_back( 10 );
   c2.push_back( 20 );
   c3.push_back( 100 );

   cout << "The original deque c1 is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   c1.swap( c2 );

   cout << "After swapping with c2, deque c1 is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   swap( c1,c3 );

   cout << "After swapping with c3, deque c1 is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   swap<>(c1, c2);
   cout << "After swapping with c2, deque c1 is:";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;
}
  

必要条件

ヘッダー: <deque>

名前空間: std

参照

関連項目

deque Class

deque::assign と deque::swap

標準テンプレート ライブラリ