basic_ios::widen
Najde odpovídající char_type k dané char.
char_type widen(
char _Char
) const;
Parametry
- _Char
Znak, který chcete převést.
Vrácená hodnota
Najde odpovídající char_type k dané char.
Poznámky
Členská funkce use_facet<ctype<E>>( getloc).widen(_Char).
Příklad
// 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;
}
Výsledek
H
H
Požadavky
Záhlaví:<ios>
Obor názvů: std