basic_string::value_type
Typ, który reprezentuje typ przechowywanych w ciągu znaków.
typedef typename allocator_type::value_type value_type;
Uwagi
Jest to równoważne traits_type::char_type i jest równoważne char dla obiektów typu string.
Przykład
// 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;
}
Wymagania
Nagłówek: <string>
Obszar nazw: std