std::basic_ios::tie
来自cppreference.com
|
|
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
| std::basic_ostream<CharT,Traits>* tie() const; |
(1) | |
| std::basic_ostream<CharT,Traits>* tie( std::basic_ostream<CharT,Traits>* str ); |
(2) | |
管理绑流。甲并列的流是一个输出流是同步的序列控制的流缓存器(
1) rdbuf()),即,flush()被称为上的并列流之前的任何输入/输出操作*this.原文:
Manages the tied stream. A tied stream is a output stream which is synchronized with the sequence controlled by the stream buffer (
rdbuf()), that is, flush() is called on the tied stream before any input/output operation on *this.返回绑流。如果是没有绑流,NULL返回.
2) 原文:
Returns the current tied stream. If there is no tied stream, NULL is returned.
集当前绑流的
str。返回绑流之前的操作。如果是没有绑流,NULL返回.原文:
Sets the current tied stream to
str. Returns the tied stream before the operation. If there is no tied stream, NULL is returned.目录 |
[编辑] 参数
| str | - | 一个输出流集的绑流
原文: an output stream to set as the tied stream |
[编辑] 返回值
在被栓的流,或NULL如果有没有并列流.
原文:
The tied stream, or NULL if there was no tied stream.
[编辑] 例外
(无)
[编辑] 注释
默认情况下,标准流
cin,cerr和clog都与cout。同样,其广泛的wcin,wcerr和wclog是绑到wcout.原文:
By default, the standard streams
cin, cerr and clog are tied to cout. Similarly, their wide counterparts wcin, wcerr and wclog are tied to wcout.[编辑] 示例
| 本章尚未完成 原因:暂无示例 |