命名空间
变体
操作

std::basic_streambuf<CharT,Traits>::pbase, std::basic_streambuf<CharT,Traits>::pptr, std::basic_streambuf<CharT,Traits>::epptr

来自 cppreference.cn
< cpp‎ | io‎ | basic_streambuf
 
 
 
 
protected:
char_type* pbase() const;
(1)
protected:
char_type* pptr() const;
(2)
protected:
char_type* epptr() const;
(3)

返回定义置入区的指针。

1) 返回置入区起始(“基”)的指针。

2) 返回置入区中当前字符(置入指针)的指针。

3) 返回置入区末尾后一位的指针。

目录

[编辑] 参数

(无)

[编辑] 返回值

1) 置入区起始的指针。

2) 置入区中当前字符(置入指针)的指针。

3) 置入区末尾后一位的指针。

[编辑] 示例

[编辑] 参阅

返回获取区起始、当前字符和结尾的指针
(protected member function) [编辑]