std::basic_ios::basic_ios
来自cppreference.com
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
basic_ios(); |
(1) | |
explicit basic_ios( std::basic_streambuf<CharT,Traits>* sb ); |
(2) | |
构建新的
1) basic_ios
对象. 默认构造函数。未初始化的内部状态。
2) init()
必须调用析构函数的对象在首次使用前或之前,否则该行为是未定义的.原文:
Default constructor. The internal state is not initialized.
init()
must be called before the first use of the object or before destructor, otherwise the behavior is undefined.通过调用init(sb)初始化内部状态。相关联的数据流缓存器被设置为
sb
. 原文:
Initializes the internal state by calling init(sb). The associated stream buffer is set to
sb
. [编辑] 参数
sb | - | 关联到流缓存器
|