basic_string::value_type
Tipo che rappresenta il tipo di caratteri memorizzati in una stringa.
typedef typename allocator_type::value_type value_type;
Note
Equivale a traits_type::char_type ed è equivalente a char per oggetti di tipo stringa.
Esempio
// basic_string_value_type.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
basic_string<char>::value_type ch1 = 'G';
char ch2 = 'H';
cout << "The character ch1 is: " << ch1 << "." << endl;
cout << "The character ch2 is: " << ch2 << "." << endl;
}
Requisiti
Intestazione: <string>
Spazio dei nomi: std