命名空间
变体
操作

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

来自 cppreference.com
< 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) 放置区域末尾后的指针。

[编辑] 示例

[编辑] 另请参阅

返回获取区域的开始、当前字符和末尾的指针
(受保护成员函数) [编辑]