std::basic_streambuf::setp
Aus cppreference.com
< cpp | io | basic streambuf
![]() |
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. |
void setp( char_type* pbeg, char_type* pend ); |
||
Setzt die Werte der Zeiger Definition der Put-Bereich. Insbesondere nach dem Aufruf pbase() == pbeg, pptr() == pbeg, epptr() == pend
Original:
Sets the values of the pointers defining the put area. Specifically, after the call pbase() == pbeg, pptr() == pbeg, epptr() == pend
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 |
[Bearbeiten] Parameter
pbeg | - | Zeiger auf den neuen Anfang der Put-Bereich
Original: pointer to the new beginning of the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
pend | - | Zeiger auf das neue Ende der Put-Bereich
Original: pointer to the new end of the put area The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten] Rückgabewert
(None)
Original:
(none)
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] Beispiel
This section is incomplete Reason: no example |
[Bearbeiten] Siehe auch
repositioniert der Anfang, nächsten und Endzeiger der Eingabesequenz Original: repositions the beginning, next, and end pointers of the input sequence The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (geschützt Member-Funktion) |