Partager via


string (<string>)

Un type qui décrit une spécialisation de la classe de modèle basic_string avec des éléments de type char sous forme de chaîne.

typedef basic_string<char, char_traits<char>, allocator<char> > string;

Notes

Consultez basic_string::basic_string pour obtenir la liste des constructeurs de chaîne.

Exemple

// 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;
}
  

Configuration requise

en-tête : <string>

l'espace de noms : DST

Voir aussi

Référence

basic_string Class

basic_string::basic_string