<array>
関数
<array> ヘッダーには、array オブジェクトで動作する get
と swap
の 2 つの非メンバー関数が含まれています。
get
配列の指定した要素への参照を返します。
template <int Index, class T, size_t N>
constexpr T& get(array<T, N>& arr) noexcept;
template <int Index, class T, size_t N>
constexpr const T& get(const array<T, N>& arr) noexcept;
template <int Index, class T, size_t N>
constexpr T&& get(array<T, N>&& arr) noexcept;
パラメーター
インデックス
要素のオフセット。
T
要素の型。
N
配列内の 要素の数。
arr
選択する配列。
例
#include <array>
#include <iostream>
using namespace std;
typedef array<int, 4> MyArray;
int main()
{
MyArray c0 { 0, 1, 2, 3 };
// display contents " 0 1 2 3"
for (const auto& e : c0)
{
cout << " " << e;
}
cout << endl;
// display odd elements " 1 3"
cout << " " << get<1>(c0);
cout << " " << get<3>(c0) << endl;
}
0 1 2 3
1 3
スワップ
2 つの array オブジェクトを交換する std::swap
の非メンバー テンプレートの特殊化。
template <class Ty, std::size_t N>
void swap(array<Ty, N>& left, array<Ty, N>& right);
パラメーター
Ty
要素の型。
N
配列のサイズ。
left
交換する最初の配列。
right
交換する 2 番目の配列。
解説
このテンプレート関数は、left.swap(right)
を実行します。
例
// std__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);
}
0 1 2 3
4 5 6 7
0 1 2 3