array::size_type
종류는 두 요소 사이의 부호 없는 거리입니다.
typedef std::size_t size_type;
설명
부호 없는 정수 형식 제어 되는 시퀀스의 길이 나타내는 개체에 설명 합니다.이 형식에 대 한 동의어입니다 std::size_t.
예제
// std__array__array_size_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 last-first " 4"
Myarray::size_type diff = c0.end() - c0.begin();
std::cout << " " << diff;
std::cout << std::endl;
return (0);
}
요구 사항
헤더: <array>
네임 스페이스: std