名前空間
変種
操作

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

提供: cppreference.com
< cpp‎ | io‎ | basic streambuf
 
 
 
 
char_type* pbase()const;
(1)
char_type* pptr()const;
(2)
char_type* epptr()const;
(3)

put 領域を定義するポインタを返します。

1) put 領域の先頭 (「ベース」) へのポインタを返します。

2) put 領域の現在の文字へのポインタ (put ポインタ) を返します。

3) put 領域の終端へのポインタを返します。

目次

[編集]引数

(なし)

[編集]戻り値

1) put 領域の先頭へのポインタ。

2) put 領域の現在の文字へのポインタ (put ポインタ)。

3) put 領域の終端へのポインタ。

[編集]

[編集]関連項目

get 領域の先頭、現在の文字、終端へのポインタを返します
(プロテクテッドメンバ関数)[edit]
close