list::value_type
類型,表示儲存在清單中的資料類型。
typedef typename Allocator::value_type value_type;
備註
value_type 是範本參數 Type 的同義字。
範例
// list_value_type.cpp
// compile with: /EHsc
#include <list>
#include <iostream>
int main( )
{
using namespace std;
list<int>::value_type AnInt;
AnInt = 44;
cout << AnInt << endl;
}
需求
標頭:<list>
命名空間: std