Partager via


wstring

Déclare une chaîne de caractères larges.wstring est un typedef qui spécialise la classe de modèle basic_string pour contenir des données de chaîne d' wchar_t .wstring hérite des fonctionnalités de la classe d' basic_string ; cela inclut des opérateurs et des méthodes.

D'autres typedefs qui spécialisent basic_string incluent chaîne, u16string, et u32string.Pour plus d'informations, consultez <string> membres.

typedef basic_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> > wstring;

Exemple

// string_wstring.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

int main( ) 
{
   using namespace std;
   // Equivalent ways to declare an object of type
   // basic_string <wchar_t>
   const basic_string <wchar_t> s1 ( L"abc" );
   wstring s2 ( L"abc" );   // Uses the typedef for wstring

   // Comparison between two objects of type basic_string <wchar_t>
   if ( s1 == s2 )
      cout << "The strings s1 & s2 are equal." << endl;
   else
      cout << "The strings s1 & s2 are not equal." << endl;
}
  

Configuration requise

en-tête : <string>

l'espace de noms : DST

Voir aussi

Référence

basic_string Class