std::basic_ospanstream<CharT,Traits>::span
来自 cppreference.com
< cpp | io | basic ospanstream
std::span<CharT> span() const noexcept; |
(1) | (自 C++23 起) |
void span( std::span<CharT> s ) noexcept; |
(2) | (自 C++23 起) |
1) 获取一个引用写入区域的
span
,如果在包装的 std::basic_spanbuf 的打开模式中设置了 std::ios_base::out,或者在其他情况下获取一个引用底层缓冲区的 span
。2) 使包装的 std::basic_spanbuf 对 s 所引用的缓冲区执行 I/O。
内容 |
[编辑] 参数
s | - | std::span 引用用作流的新底层缓冲区的存储 |
[编辑] 返回值
1) 一个 std::span,它根据包装的 std::basic_spanbuf 的打开模式引用底层缓冲区或写入区域。
2) (无)
[编辑] 示例
运行此代码
#include <cassert> #include <iostream> #include <span> #include <spanstream> int main() { char out_buf[16]; std::ospanstream ost{std::span<char>{out_buf}}; ost << "C++" << ' ' << 23 << '\0'; // note explicit null-termination auto sp = ost.span(); assert( sp[0] == 'C' && sp[1] == '+' && sp[2] == '+' && sp[3] == ' ' && sp[4] == '2' && sp[5] == '3' && sp[6] == '\0' ); std::cout << "sp.data(): [" << sp.data() << "]\n"; std::cout << "out_buf: [" << out_buf << "]\n"; // spanstream uses out_buf as internal storage, no allocations assert(static_cast<char*>(out_buf) == sp.data()); const char in_buf[] = "X Y 42"; std::ispanstream ist{std::span<const char>{in_buf}}; assert(static_cast<const char*>(in_buf) == ist.span().data()); char c; ist >> c; assert(c == 'X'); ist >> c; assert(c == 'Y'); int i; ist >> i; assert(i == 42); ist >> i; // buffer is exhausted assert(!ist); }
输出
sp.data(): [C++ 23] out_buf: [C++ 23]
[编辑] 另请参阅
(C++23) |
根据模式获取或初始化底层缓冲区 ( std::basic_spanbuf<CharT,Traits> 的公共成员函数) |