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