What is meant by this C++ statement?
vector::size_type x;
And, what is the use of the scope operator :: here? In ot
::
vector is a template
so the vector type templated with int has a member typedef called size_type. x is defined as a variable of that type.
vector
int
typedef
size_type
x