std::basic_ostream::write
Aus 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> basic_ostream& write( const char_type* s, std::streamsize count ); |
||
Outputs characters from successive locations in the character array whose first element is pointed to by s. Characters are inserted into the output sequence until one of the following occurs:
- exactly
countcharacters are inserted - inserting into the output sequence fails (in which case
setstate(badbit)is called)
Diese Funktion ist eine unformatierte Ausgabe Funktion: es beginnt die Ausführung durch den Bau ein Objekt vom Typ
sentry, die spült die tie()'d Ausgabepuffer wenn nötig und die Stream-Fehler überprüft. Nach dem Bau, wenn die Wache Objekt kehrt false, gibt die Funktion ohne zu versuchen, keine Ausgabe. Wenn eine Ausnahme während der Ausgabe ausgelöst wird, dann ios :: badbit gesetzt ist (die Ausnahme unterdrückt sofern exceptions()&badbit != 0, in welchem Fall es wird erneut ausgelöst)Original:
This function is an unformatted output function: it begin execution by constructing an object of type
sentry, which flushes the tie()'d output buffers if necessary and checks the stream errors. After construction, if the sentry object returns false, the function returns without attempting any output. If an exception is thrown during output, then ios::badbit is set (the exception is suppressed unless exceptions()&