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) | |
返回定义 put 区域的指针。
1) 返回 put 区域的起始(“基”)指针。
2) 返回 put 区域中当前字符(put 指针)的指针。
3) 返回 put 区域末尾之后一个位置的指针。
目录 |
[编辑] 参数
(无)
[编辑] 返回值
1) put 区域起始位置的指针。
2) put 区域中当前字符(put 指针)的指针。
3) put 区域末尾之后一个位置的指针。
[编辑] 示例
本节尚不完整 原因:没有示例 |
[编辑] 参见
返回 get 区域的起始位置、当前字符和末尾的指针 (受保护的成员函数) |