wstring

Dichiara una serie di caratteri di tipo " wide ".wstring è un typedef che specializza la classe modello basic_string per contenere i dati in formato stringa wchar_t.wstring eredita le funzionalità della classe basic_string ; sono inclusi gli operatori e i metodi.

Altri typedef che specializzato basic_string includono stringa, u16stringe u32string.Per ulteriori informazioni, vedere <stringa> membri.

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

Esempio

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

Requisiti

intestazione: <string>

Spazio dei nomi: deviazione standard

Vedere anche

Riferimenti

basic_string Class