std::basic_ios::fill
De cppreference.com
|
|
This page has been machine-translated from the English version of the wiki using Google Translate.
The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
| CharT fill() const; |
(1) | |
| CharT fill( CharT ch ); |
(2) | |
Administra el carácter de relleno utilizado para rellenar las conversiones de salida para el ancho de campo especificado .
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.
devuelve el carácter de relleno actual
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.
establece el carácter de relleno para
ch, devuelve el valor anterior del carácter de relleno 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.
[editar] Parámetros
| ch | - | el carácter que se utiliza como carácter de relleno
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. |
[editar] Valor de retorno
el carácter de relleno antes de la llamada a la función .
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.
[editar] Ejemplo
| This section is incomplete Reason: no example |