// 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; }

msdn의 예제코드만으로는 어떤 기능을 하는녀석인지 제 머리로는 알기가 힘드네요..