命名空间
变体
操作

std::basic_osyncstream<CharT,Traits,Allocator>::get_wrapped

来自 cppreference.com
streambuf_type* get_wrapped() const noexcept;

返回指向包装的 std::basic_streambuf 的指针,通过调用 get_wrapped() 从基础的 std::basic_syncbuf 获得。

[编辑] 参数

(无)

[编辑] 示例

包装的缓冲区可以安全地再次包装在不同的同步输出流中。

#include <iostream>
#include <syncstream>
 
int main()
{
    std::osyncstream bout1(std::cout);
    bout1 << "Hello, ";
    {
        std::osyncstream(bout1.get_wrapped()) << "Goodbye, " << "Planet!" << '\n';
    } // emits the contents of the temporary buffer
    bout1 << "World!" << '\n';
} // emits the contents of bout1

输出

Goodbye, Planet!
Hello, World!

[编辑] 另请参见

销毁 basic_osyncstream 并发出其内部缓冲区
(公有成员函数) [编辑]
检索包装的 streambuf 指针
(std::basic_syncbuf<CharT,Traits,Allocator> 的公有成员函数) [编辑]