string (<string>)
Un tipo che descrive una specializzazione di una classe da basic_string modello con elementi di tipo char come stringa.
typedef basic_string<char, char_traits<char>, allocator<char> > string;
Note
Vedere basic_string::basic_string per un elenco dei costruttori della stringa.
Esempio
// string_string.cpp
// compile with: /EHsc
#include <string>
#include <iostream>
int main( )
{
using namespace std;
// Equivalent ways to declare an object
// of type basic_string <char>
const basic_string <char> s1 ( "test" );
string s2 ( "test" ); // Uses the typedef for string
// comparison between two objects of type basic_string
if ( s1 == s2 )
cout << "The strings s1 & s2 are equal." << endl;
else
cout << "The strings s1 & s2are not equal." << endl;
}
Requisiti
intestazione: <string>
Spazio dei nomi: deviazione standard