다음을 통해 공유


basic_ios::widen

해당 검색 char_type 에 지정 된 char.

char_type widen(
    char _Char
) const;

매개 변수

  • _Char
    변환할 문자입니다.

반환 값

해당 검색 char_type 에 지정 된 char.

설명

멤버 함수를 반환 합니다. use_facet< ctype<E> >( getloc).widen(_Char).

예제

// basic_ios_widen.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
#include <wchar.h>

int main( ) 
{
   using namespace std;
   char *z = "Hello";
   wchar_t y[2] = {0,0};
   cout << z[0] << endl;
   y[0] = wcout.widen( z[0] );
   wcout << &y[0] << endl;
}

Output

H
H

요구 사항

헤더: <ios>

네임 스페이스: std

참고 항목

참조

basic_ios Class

iostream 프로그래밍

iostreams 규칙