vector::value_type

A type that represents the data type stored in a vector.

typedef typename Allocator::value_type value_type;

Remarks

value_type is a synonym for the template parameter Type.

Example

// vector_value_type.cpp
// compile with: /EHsc
#include <vector>
#include <iostream>

int main( )
{
   using namespace std;
   vector<int>::value_type AnInt;
   AnInt = 44;
   cout << AnInt << endl;
}
44

Requirements

Header: <vector>

Namespace: std

See Also

Reference

vector Class

Standard Template Library