std::basic_filebuf::sync
Aus cppreference.com
< cpp | io | basic filebuf
![]() |
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. |
protected: virtual int sync() |
||
Wenn eine Put-Bereich vorhanden ist (z. B. die Datei zum Schreiben geöffnet wurde), ruft
overflow()
um alle anstehenden Ausgabe in die Datei schreiben .Original:
If a put area exists (e.g. the file was opened for writing), calls
overflow()
to write all pending output to the file.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.
Wenn eine get Bereich existiert (zB die Datei zum Lesen geöffnet), ist der Effekt Implementierung definiert. Typische Implementierung kann Abpumpen des get-Bereich und bewegen Sie die aktuelle Position in der Datei zurück durch die entsprechende Anzahl von Bytes .
Original:
If a get area exists (e.g. the file was opened for reading), the effect is implementation-defined. Typical implementation may empty out the get area and move the current file position back by the corresponding number of bytes.
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.
Inhaltsverzeichnis |