共用方式為


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 慣例