basic_ios::narrow
Localiza o caractere equivalente a char_typedado.
char narrow(
char_type _Char,
char _Default = '\0'
) const;
Parâmetros
_Char
char a conversão._Default
char que você deseja retornada se nenhum equivalente for encontrado.
Valor de retorno
char equivalente a char_typedado.
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
Cabeçalho: <ios>
namespace: STD