vector::value_type
Ein Typ, der den Datentyp darstellt, gespeicherten in einem Vektor.
typedef typename Allocator::value_type value_type;
Hinweise
value_type ist ein Synonym für den Vorlagenparameter Typ.
Beispiel
// 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;
}
Anforderungen
Header: <vector>
Namespace: std