std::streamoff
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. |
definiert in Header <ios>
|
||
typedef /*unspecified*/ streamoff; |
||
Die Art
std::streamoff
ist ein signiertes integraler Art von ausreichender Größe, um die maximal mögliche Dateigröße vom Betriebssystem unterstützt darstellen. Typischerweise ist dies ein typedef long long .Original:
The type
std::streamoff
is a signed integral type of sufficient size to represent the maximum possible file size supported by the operating system. Typically, this is a typedef to long long.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.
Es wird verwendet, um Offsets aus dem Strom-Positionen (Werte vom Typ std::fpos) darstellen. Ein
std::streamoff
Wert -1 wird auch verwendet, um Fehlerbedingungen durch einige der I / O-Bibliothek Funktionen darstellen .Original:
It is used to represent offsets from stream positions (values of type std::fpos). A
std::streamoff
value of -1 is also used to represent error conditions by some of the I/O library functions.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.
[Bearbeiten] Beziehung mit std :: FPOS
- die Differenz zwischen zwei Objekten std::fpos ist ein Wert von Typ std::streamoffOriginal:the difference between two std::fpos objects is a value of type std::streamoffThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- ein Wert vom Typ std::streamoff hinzugefügt oder abgezogen werden std::fpos was eine andere std::fpos .Original:a value of type std::streamoff may be added or subtracted from std::fpos yielding a different std::fpos.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- ein Wert vom Typ std::fpos implizit konvertierbar std::streamoff (die Umwandlung im Offset vom Anfang der Datei .Original:a value of type std::fpos is implicitly convertible to std::streamoff (the conversion results in the offset from the beginning of the file.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
- einen Wert vom Typ std::fpos konstruierbar ist von einem Wert des Typs std::streamoffOriginal:a value of type std::fpos is constructible from a value of type std::streamoffThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten] Siehe auch
stellt absolute Position in einem Stream oder einer Datei Original: represents absolute position in a stream or a file The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Klassen-Template) | |
sets the input position indicator (öffentliche Elementfunktion of std::basic_istream )
| |
setzt den Ausgang Stellungsanzeige Original: sets the output position indicator The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (öffentliche Elementfunktion of std::basic_ostream )
|