vector::value_type
A type that represents the data type stored in a vector.
typedef typename Allocator::value_type value_type;
설명
value_type is a synonym for the template parameter Type.
예제
// 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;
}
요구 사항
헤더: <벡터>
네임스페이스: std