array::swap
2 つの配列の内容を交換します。
void swap(array& right);
パラメーター
- right
内容を交換する配列。
解説
このメンバー関数は、*this と right の間で被制御シーケンスを交換します。N に比例した回数の要素の割り当てとコンストラクター呼び出しが実行されます。
使用例
// std_tr1__array__array_swap.cpp
// compile with: /EHsc
#include <array>
#include <iostream>
typedef std::array<int, 4> Myarray;
int main()
{
Myarray c0 = {0, 1, 2, 3};
// display contents " 0 1 2 3"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
Myarray c1 = {4, 5, 6, 7};
c0.swap(c1);
// display swapped contents " 4 5 6 7"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
swap(c0, c1);
// display swapped contents " 0 1 2 3"
for (Myarray::const_iterator it = c0.begin();
it != c0.end(); ++it)
std::cout << " " << *it;
std::cout << std::endl;
return (0);
}
必要条件
ヘッダー : <array>
名前空間: std