◐ Shell
clean mode source ↗

std::basic_ios::fill - cppreference.com

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.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

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.

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.

1)

restituisce il carattere di riempimento corrente

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.

2)

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.

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.

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.

Esempio