array::difference_type
부호 있는 두 요소 사이의 거리의 형식입니다.
typedef std::ptrdiff_t difference_type;
설명
부호 있는 정수 형식 주소 제어 되는 시퀀스에는 두 요소 사이의 차이 나타내는 개체에 설명 합니다.이 형식에 대 한 동의어입니다 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