egptr

std::basic_streambuf::eback, gptr, egptr

char_type* eback() const;
(1)
char_type* gptr() const;
(2)
char_type* egptr() const;
(3)

Returns pointers defining the get area.

1) Returns the pointer to the beginning of the get area.

2) Returns the pointer to the current character (get pointer) in the get area.

3) Returns the pointer one past the end of the get area.

Parameters

(none).

Return value

1) The pointer to the beginning of the get area.

2) The pointer to the current character (get pointer) in the get area.

3) The pointer one past the end of the get area.

Notes

While the names "gptr" and "egptr" refer to the get area, the name "eback" refers to the end of the putback area: stepping backwards from gptr, characters can be put back until eback.

Example

See also

returns a pointer to the beginning, current character and the end of the put area
(protected member function)

© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/io/basic_streambuf/gptr

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部