array::size_type
Der Typ eines Dunkelgrün ohne Vorzeichen zwischen zwei Element.
typedef std::size_t size_type;
Hinweise
Der vorzeichenlose Typ ganze Zahl beschreibt ein Objekt, das die Länge jeder gesteuerten Sequenz darstellen kann.Es ist ein Synonym für den Typ std::size_t.
Beispiel
// 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);
}
Anforderungen
Header: <array>
Namespace: std