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

请参见

参考

list 类

标准模板库