std::basic_streambuf::eback, std::basic_streambuf::gptr, std::basic_streambuf::egptr
Aus cppreference.com
<metanoindex/>
<tbody> </tbody> char_type* eback() const; |
(1) | |
char_type* gptr() const; |
(2) | |
char_type* egptr() const; |
(3) | |
Liefert Zeiger Definition der get-Bereich .
Original:
Returns pointers defining the get area.
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)
Gibt den Zeiger auf den Anfang des get-Bereich .
Original:
Returns the pointer to the beginning of the get area.
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)
Gibt den Zeiger auf das aktuelle Zeichen ( get-Zeiger) in der get-Bereich .
Original:
Returns the pointer to the current character (get pointer) in the get area.
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.
3)
Gibt den Zeiger auf das Ende des get-Bereich .
Original:
Returns the pointer to the end of the get area.
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
(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.
Rückgabewert
1)
Der Zeiger auf den Beginn des get-Bereich .
Original:
The pointer to the beginning of the get area.
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 Zeiger auf dem aktuellen Zeichensatz ( get-Zeiger) in der get-Bereich .
Original:
The pointer to the current character (get pointer) in the get area.
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.
3)
Der Zeiger auf das Ende des get-Bereich .
Original:
The pointer to the end of the get area.
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 |
