Udostępnij za pośrednictwem


deque::value_type

Typ, który reprezentuje typ danych przechowywanych w deque.

typedef typename Allocator::value_type value_type;

Uwagi

value_typejest synonimem parametru typu.

Przykład

// deque_value_type.cpp
// compile with: /EHsc
#include <deque>
#include <iostream>
int main( ) 
{
   using namespace std;
   deque<int>::value_type AnInt;
   AnInt = 44;
   cout << AnInt << endl;
}
  

Wymagania

Nagłówek: <deque>

Obszar nazw: std

Zobacz też

Informacje

deque Class

Standardowa biblioteka szablonu