codecvt::out
Converte una sequenza charinterno o a una sequenza Byteesterno S.
result out(
StateType& _State,
const CharType* _First1,
const CharType* _Last1,
const CharType*& _Next1,
Byte* _First2,
Byte* _Last2,
Byte*& _Next2
) const;
Parametri
_State
Lo stato di conversione che viene gestito tra le chiamate alla funzione membro._First1
Puntatore all'inizio della sequenza da convertire._Last1
Puntatore alla fine della sequenza da convertire._Next1
Il riferimento a un puntatore per primo char non convertito dopo l'ultimo char converte._First2
Puntatore all'inizio della sequenza convertita._Last2
Puntatore alla fine della sequenza convertita._Next2
Riferimento a un puntatore per primo Byte non convertito dopo l'ultimo Byteconvertito.
Valore restituito
La funzione membro restituisce do_out(_State, _First1, _Last1, _Next1, _First2, _Last2, _Next2).
Note
Per ulteriori informazioni, vedere codecvt::do_out.
Esempio
// codecvt_out.cpp
// compile with: /EHsc
#define _INTL
#include <locale>
#include <iostream>
#include <wchar.h>
using namespace std;
#define LEN 90
int main( )
{
char pszExt[LEN+1];
wchar_t *pwszInt = L"This is the wchar_t string to be converted.";
memset( &pszExt[0], 0, ( sizeof( char ) )*( LEN+1 ) );
char* pszNext;
const wchar_t* pwszNext;
mbstate_t state;
locale loc("C");//English_Britain");//German_Germany
int res = use_facet<codecvt<wchar_t, char, mbstate_t> >
( loc ).out( state,
pwszInt, &pwszInt[wcslen( pwszInt )], pwszNext ,
pszExt, &pszExt[wcslen( pwszInt )], pszNext );
pszExt[wcslen( pwszInt )] = 0;
cout << ( ( res!=codecvt_base::error ) ? "It worked: " : "It didn't work: " )
<< "The converted string is:\n ["
<< &pszExt[0]
<< "]" << endl;
}
Requisiti
intestazione: <locale>
Spazio dei nomi: deviazione standard