basic_ios::narrow
Cerca char equivalente a char_typespecificato.
char narrow(
char_type _Char,
char _Default = '\0'
) const;
Parametri
_Char
Oggetto char da convertire._Default
char che si ha restituito se nessun equivalente viene trovato.
Valore restituito
char equivalente a char_typespecificato.
Note
La funzione membro restituisce use_facet< ctype<E>>( getloc( ) ). narrow(_Char, _Default).
Esempio
// basic_ios_narrow.cpp
// compile with: /EHsc
#include <ios>
#include <iostream>
#include <wchar.h>
int main( )
{
using namespace std;
wchar_t *x = L"test";
char y[10];
cout << x[0] << endl;
wcout << x << endl;
y[0] = wcout.narrow( x[0] );
cout << y[0] << endl;
}
Output
116
test
t
Requisiti
IOS <diIntestazione: >
Spazio dei nomi: std