std::basic_filebuf::imbue
Da cppreference.com.
< cpp | io | basic filebuf
![]() |
Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.
La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui. |
protected: virtual void imbue( const std::locale& loc ) |
||
Modifica le impostazioni internazionali associato in modo che tutti i caratteri inserito o estratto dopo questa chiamata (e fino a quando un'altra chiamata a
imbue()
) sono convertite utilizzando l'aspetto std::codecvt di loc
.Original:
Changes the associated locale so that all characters inserted or extracted after this call (and until another call to
imbue()
) are converted using the std::codecvt facet of loc
.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Se la codifica del vecchio locale è dipendente dallo stato e il file non è posizionato all'inizio, poi il nuovo locale deve avere lo stesso aspetto std::codecvt come quello precedentemente imbevuti.
Original:
If the old locale's encoding is state-dependent and file is not positioned at the beginning, then the new locale must have the same std::codecvt facet as the one previously imbued.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Indice |
[modifica] Parametri
loc | - | la versione locale di infondere il flusso con
Original: the locale to imbue the stream with The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[modifica] Valore di ritorno
(Nessuno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[modifica] Esempio
This section is incomplete Reason: no example |
[modifica] Vedi anche
[virtuale] |
cambia il linguaggio associato Original: changes the associated locale The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (virtuale protetto funzione of std::basic_streambuf membro)
|
imposta il locale Original: sets the locale The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (metodo pubblico) |