array::difference_type
2 つの要素間の距離を表す、符号付きの型です。
typedef std::ptrdiff_t difference_type;
解説
この符号付き整数型は、被制御シーケンス内の 2 つの要素について、そのアドレス間の差を表現できるオブジェクトを表します。この型は、型 std::ptrdiff_t のシノニムです。
使用例
// std_tr1__array__array_difference_type.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;
// display distance first-last " -4"
Myarray::difference_type diff = c0.begin() - c0.end();
std::cout << " " << diff;
std::cout << std::endl;
return (0);
}
必要条件
ヘッダー : <array>
名前空間: std