std::basic_streambuf<CharT,Traits>:: pbase, std::basic_streambuf<CharT,Traits>:: pptr, std::basic_streambuf<CharT,Traits>:: epptr
From cppreference.net
<
cpp
|
io
|
basic streambuf
C++
Input/output library
| I/O manipulators | ||||
| Print functions (C++23) | ||||
| C-style I/O | ||||
| Buffers | ||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(C++20)
|
||||
| Streams | ||||
| Abstractions | ||||
| File I/O | ||||
| String I/O | ||||
| Array I/O | ||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(C++23)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
|
(
C++98/26*
)
|
||||
| Synchronized Output | ||||
|
(C++20)
|
||||
| Types | ||||
| Error category interface | ||||
|
(C++11)
|
||||
|
(C++11)
|
std::basic_streambuf
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
protected
:
char_type * pbase ( ) const ; |
(1) | |
|
protected
:
char_type * pptr ( ) const ; |
(2) | |
|
protected
:
char_type * epptr ( ) const ; |
(3) | |
put領域を定義するポインタを返します。
1) プット領域の先頭(「ベース」)へのポインタを返します。
2) 現在の文字( put pointer )へのポインタを返します。
3) プット領域の終端の1つ後ろのポインタを返します。
目次 |
パラメータ
(なし)
戻り値
1) 出力領域の先頭へのポインタ。
2) 現在の文字へのポインタ ( put pointer ) を指す。
3) プット領域の終端を1つ超えた位置のポインタ。
例
|
このセクションは不完全です
理由: 例がありません |
関連項目
|
入力領域の先頭、現在の文字、および終端へのポインタを返す
(protected member function) |