次の方法で共有


list::value_type

データ型を表す型は、リストに格納されている

typedef typename Allocator::value_type value_type;

解説

value_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 Class

標準テンプレート ライブラリ