◐ Shell
clean mode source ↗

std::basic_streambuf::pbase, std::basic_streambuf::pptr, std::basic_streambuf::epptr – cppreference.com

Aus cppreference.com

<metanoindex/>

<tbody> </tbody>

char_type* pbase() const;

(1)

char_type* pptr() const;

(2)

char_type* epptr() const;

(3)

Liefert Zeiger Definition der Put-Bereich .

Original:

Returns pointers defining 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.

1)

Gibt den Zeiger auf den Anfang der Put-Bereich .

Original:

Returns the pointer to the 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.

2)

Gibt den Zeiger auf das aktuelle Zeichen ( Schreibzeigers) in der Put-Bereich .

Original:

Returns the pointer to the current character (put pointer) in 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.

3)

Gibt den Zeiger auf das Ende der Put-Bereich .

Original:

Returns the pointer to the 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.

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.

Rückgabewert

1)

Der Zeiger auf den Anfang der Put-Bereich .

Original:

The pointer to the 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.

2)

Der Zeiger auf dem aktuellen Zeichensatz ( Schreibzeigers) in der Put-Bereich .

Original:

The pointer to the current character (put pointer) in 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.

3)

Der Zeiger auf das Ende der Put-Bereich .

Original:

The pointer to the 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.

Beispiel

Siehe auch

liefert einen Zeiger auf den Anfang, aktuellen Charakter und Ende des get-Bereich

Original:

returns a pointer to the beginning, current character and 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.


(geschützt Member-Funktion) [edit]