Skip to content

Latest commit

 

History

History
49 lines (37 loc) · 1.62 KB

init.md

File metadata and controls

49 lines (37 loc) · 1.62 KB

init

  • ios[meta header]
  • std[meta namespace]
  • basic_ios[meta class]
  • function[meta id-type]
protected:
  void init(basic_streambuf<CharT, Traits>* sb);
  • basic_streambuf[link ../../streambuf/basic_streambuf.md]

概要

*this を初期化する。

効果

*this の状態を以下の表のようになるよう設定する。

要素
rdbuf() sb
tie() 0
rdstate() sb がヌルポインタでなければ goodbit、そうでなければ badbit
exceptions() goodbit
flags() skipws | dec
width() 0
precision() 6
fill() widen(' ')
getloc() locale() のコピー
iword() で使用される私用記憶域 なし
pword() で使用される私用記憶域 なし

戻り値

無し

バージョン

言語

  • C++98

参照