vector::value_type
벡터에 저장 된 데이터 형식을 나타내는 형식입니다.
typedef typename Allocator::value_type value_type;
설명
value_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;
}
요구 사항
헤더: <vector>
네임 스페이스: std