- fstream[meta header]
- std[meta namespace]
- class template[meta id-type]
namespace std {
template<class CharT, class Traits = char_traits<CharT>>
class basic_filebuf : public basic_streambuf<CharT, Traits> { …… };
using filebuf = basic_filebuf<char>;
using wfilebuf = basic_filebuf<wchar_t>;
}
- char_traits[link ../string/char_traits.md]
- basic_streambuf[link ../streambuf/basic_streambuf.md]
basic_filebuf
は、ファイルに対するストリームバッファを表現するクラスである。
CのFILE*
に対する入出力関数を使って実装される。
位置操作(seekoff
とseekpos
)は、入力・出力双方で共有される。
テンプレートパラメータとして文字型を受け取るようになっており、使用を容易にするため、以下のパラメータ設定済みエイリアスが定義されている。
このエイリアスは<fstream>
ヘッダと<iosfwd>
ヘッダで定義されている。
エイリアス |
説明 |
対応バージョン |
filebuf |
char 型。ASCII、UTF-8等のマルチバイト文字列や、バイナリデータとして使用する。 |
|
wfilebuf |
wchar_t 型。ワイド文字列として使用する。 |
|
名前 |
説明 |
対応バージョン |
char_type |
テンプレート仮引数CharT |
|
int_type |
Traits::int_type |
|
pos_type |
Traits::pos_type |
|
off_type |
Traits::off_type |
|
traits_type |
テンプレート仮引数Traits |
|
- コピーコンストラクタとコピー代入演算子は
delete
宣言されている。
すべてprotected
で定義されている。
名前 |
説明 |
対応バージョン |
imbue |
ロケールを設定する (protected virtual) |
|
setbuf |
バッファ領域を与える (protected virtual) |
|
seekoff |
相対指定での位置移動 (protected virtual) |
|
seekpos |
絶対指定での位置移動 (protected virtual) |
|
sync |
出力列の同期 (protected virtual) |
|
uflow |
(protected virtual) |
|
underflow |
(protected virtual) |
|
showmanyc |
ブロックせずに読み取れると期待される文字数を得る (protected virtual) |
|
pbackfail |
1文字を入力列に戻す (protected virtual) |
|
overflow |
(protected virtual) |
|