std::basic_streambuf::pubseekpos, std::basic_streambuf::seekpos
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> pos_type pubseekpos( pos_type pos, ios_base::openmode which = ios_base::in | ios_base::out ); |
(1) | |
protected: virtual pos_type seekpos( pos_type pos, ios_base::openmode which = ios_base::in | ios_base::out); |
(2) | |
Stellt die Stellungsanzeige der Eingangs-und / oder Ausgabesequenz an eine absolute Position .
Original:
Sets the position indicator of the input and/or output sequence to an absolute position.
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.
1)
Ruft
seekpos(pos, which) der am meisten abgeleiteten KlasseOriginal:
Calls
seekpos(pos, which) of the most derived classThe 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.
2)
Die Basisklasse Version dieser Funktion hat keine Wirkung. Die abgeleiteten Klassen überschreiben können diese Funktion, um die absolute Positionierung der Stellungsanzeige ermöglichen .
Original:
The base class version of this function has no effect. The derived classes may override this function to allow absolute positioning of the position indicator.
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.
Parameter
| pos | - | absolute Position, um die Position Indikator gesetzt .
Original: absolute position to set the position indicator to. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||
| which | - | Legt fest, welche der Ein-und / oder Ausgabe-Sequenzen zu beeinflussen. Es kann eine oder eine Kombination der folgenden Konstanten:
Original: defines which of the input and/or output sequences to affect. It can be one or a combination of the following constants:
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. | ||||||||||||||||||||||||
Rückgabewert
1)
Der Rückgabewert
seekpos(pos, which)Original:
The return value of
seekpos(pos, which)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.
2)
Der resultierende absolute Position wie vom Stellungsgeber definiert. Die Basisklasse Version gibt
pos_type(off_type(1-)) .Original:
The resulting absolute position as defined by the position indicator. The base class version returns
pos_type(off_type(1-)).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.
Beispiel
| This section is incomplete Reason: no example |
