std::basic_ios::fill
Da cppreference.com.
![]() |
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. |
CharT fill() const; |
(1) | |
CharT fill( CharT ch ); |
(2) | |
Gestisce il carattere di riempimento utilizzato per riempire le conversioni di uscita per la larghezza del campo specificato.
1) Original:
Manages the fill character used to pad the output conversions to the specified field width.
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.
restituisce il carattere di riempimento corrente
2) Original:
returns the current fill character
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.
imposta il carattere di riempimento per
ch
, restituisce il valore precedente del carattere di riempimento Original:
sets the fill character to
ch
, returns previous value of the fill character 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] Parametri
ch | - | il carattere da utilizzare come carattere di riempimento
Original: the character to use as fill character 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
il carattere di riempimento prima della chiamata alla funzione.
Original:
the fill character before the call to the function.
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 |