basic_ios::narrow
Localiza char equivalente a char_typedeterminado.
char narrow(
char_type _Char,
char _Default = '\0'
) const;
Parâmetros
_Char
char a ser convertida._Default
char que você deseja retornado se nenhum equivalente é encontrado.
Valor de retorno
char equivalente a char_typedeterminado.
Comentários
A função de membro retorna use_facet< ctype<E> >( getloc()). narrow(_Char, _Default).
Exemplo
// 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;
}
Saída
116
test
t
Requisitos
ios <deCabeçalho: >
Namespace: std