名稱空間
變體
操作

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) 置入區末尾後一位的指標。

[編輯] 示例

[編輯] 參閱

返回獲取區起始、當前字元和結尾的指標
(protected member function) [編輯]