std::ends
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. |
<metanoindex/>
<tbody> </tbody>| Déclaré dans l'en-tête <ostream>
|
||
template< class CharT, class Traits > std::basic_ostream<charT,traits>& ends( std::basic_ostream<CharT, Traits>& os ); |
||
Insère un caractère nul dans la séquence de sortie
os comme si en appelant os.put(CharT()) . Original:
Inserts a null character into the output sequence
os as if by calling os.put(CharT()). 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.
Il s'agit d'un manipulateur de sortie uniquement d'E / S, il peut être appelé avec une expression telle que pour tout
out << std::ends out de std::basic_ostream type .Original:
This is an output-only I/O manipulator, it may be called with an expression such as
out << std::ends for any out of type std::basic_ostream.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.
Notes
Ce manipulateur est généralement utilisé avec
std::ostrstream, lorsque le tampon de sortie associé doit se terminer par un être traitée comme une chaîne C .Original:
This manipulator is typically used with
std::ostrstream, when the associated output buffer needs to be null-terminated to be processed as a C string.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.
Contrairement std::endl, ce manipulateur ne pas déverser le flux .
Original:
Unlike std::endl, this manipulator does not flush the stream.
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.
Paramètres
| os | - | référence aux flux de sortie
Original: reference to output stream The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Retourne la valeur
os (référence au flux après l'insertion du caractère nul)Original:
os (reference to the stream after insertion of the null 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.
Exemple
#include <cstdio>
#include <strstream>
int main()
{
std::ostrstream oss;
oss << "Sample text: " << 42 << std::ends;
std::printf("%s\n", oss.str());
oss.freeze(false); // enable memory deallocation
}
Résultat :
Sample text: 42
Voir aussi
(obsolète) |
met en œuvre des opérations de caractère tableau de sortie Original: implements character array output operations The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (classe) |