- streambuf[meta header]
- std[meta namespace]
- basic_streambuf[meta class]
- function[meta id-type]
namespace std {
template<class CharT, class Traits = char_traits<CharT>>
class basic_streambuf {
protected:
basic_streambuf();
……
};
}オブジェクトを構築する。
- 入力部分列・出力部分列の各ポインタをヌルにする。
- 現在のグローバルロケールを
localeデフォルトコンストラクタで取得し、getloc()の初期値とする。
gptr()==nullptregptr()==nullptrpptr()==nullptrepptr()==nullptreback()==nullptrgptr()==nullptregptr()==nullptrgetloc()==locale()
- C++98