array::size_type
Il tipo di distanza senza segno tra l'elemento due.
typedef std::size_t size_type;
Note
Il tipo Integer senza segno viene illustrato un oggetto che può rappresentare la lunghezza di una sequenza selezionata.È sinonimo del tipo std::size_t.
Esempio
// 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);
}
Requisiti
intestazione: <array>
Spazio dei nomi: deviazione standard