std::basic_ostream<CharT,Traits>::basic_ostream
来自cppreference.com
< cpp | io | basic ostream
explicit basic_ostream( std::basic_streambuf<CharT, Traits>* sb ); |
(1) | |
protected: basic_ostream( const basic_ostream& rhs ) = delete; |
(2) | (C++11 起) |
protected: basic_ostream( basic_ostream&& rhs ); |
(3) | (C++11 起) |
2) 复制构造函数受保护且被弃置。输出流不可复制。
3) 移动构造函数用
basic_ios<CharT, Traits>::move(rhs)
从 rhs 移动除了 rdbuf()
之外的所有 basic_ios
成员到 *this 中。此移动构造函数受保护:它被可移动输出流类 std::basic_ofstream 和 std::basic_ostringstream 的移动构造函数所调用,它们知道如何正确地移动关联的流缓冲区。参数
sb | - | 用作输出序列的流缓冲区 |
rhs | - | 初始化来源的 basic_ostream |
注解
因为当 sb 为空指针时 basic_ios::init(sb) 会设置 badbit
,又因为当流已经处于故障状态时 basic_ostream::sentry 什么也不做,向从空指针 sb 构造的流进行写入是空操作。
示例
运行此代码
#include <iostream> #include <sstream> #include <utility> int main() { // 错误:复制构造函数被删除 // std::ostream myout(std::cout); // OK:与 cout 共享缓冲 std::ostream myout(std::cout.rdbuf()); // 错误:移动构造函数受保护 // std::ostream s2(std::move(std::ostringstream() << 7.1)); // OK:通过派生类调用移动构造函数 std::ostringstream s2(std::ostringstream() << 7.1); myout << s2.str() << '\n'; std::ostream dev_null{nullptr}; // 见上文的注解 dev_null << "no-op"; }
输出:
7.1