다음을 통해 공유


wstring

와이드 문자 문자열을 선언합니다.wstring전문 템플릿 클래스 형식 정의 basic_string 포함 wchar_t 문자열 데이터입니다.wstring상속 기능을 basic_string 클래스입니다. 연산자와 메서드를 포함 합니다.

전문적으로 하는 다른 형식 정의 basic_string 포함 문자열, u16string, 및 u32string.자세한 내용은 <string> 멤버를 참조하십시오.

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

예제

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

요구 사항

헤더: <string>

네임 스페이스: std

참고 항목

참조

basic_string Class