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