std::ostreambuf_iterator
来自 cppreference.com
定义在头文件 <iterator> 中 |
||
template< class CharT, class Traits = std::char_traits<CharT> > class ostreambuf_iterator |
(直到 C++17) | |
template< class CharT, class Traits = std::char_traits<CharT> > class ostreambuf_iterator; |
(从 C++17 开始) | |
std::ostreambuf_iterator
是一个单遍 LegacyOutputIterator,它将连续的字符写入为其构造的 std::basic_streambuf 对象。实际的写入操作是在将迭代器(无论是否取消引用)赋值时执行的。递增 std::ostreambuf_iterator
是一个无操作。
在典型的实现中,std::ostreambuf_iterator
唯一的成员数据是与之关联的 std::basic_streambuf
的指针,以及一个指示是否已达到文件结尾的布尔标志。
内容 |
[编辑] 成员类型
成员类型 | 定义 | ||||
iterator_category
|
std::output_iterator_tag | ||||
value_type
|
void | ||||
difference_type
|
| ||||
pointer
|
void | ||||
reference
|
void | ||||
char_type
|
CharT
| ||||
traits_type
|
Traits
| ||||
streambuf_type
|
std::basic_streambuf<CharT, Traits> | ||||
ostream_type
|
std::basic_ostream<CharT, Traits> |
成员类型 |
(直到 C++17) |
[编辑] 成员函数
构造一个新的 ostreambuf_iterator (公共成员函数) | |
(析构函数) (隐式声明) |
析构一个 ostreambuf_iterator (公共成员函数) |
将一个字符写入关联的输出序列 (公共成员函数) | |
无操作 (公共成员函数) | |
无操作 (公共成员函数) | |
测试输出是否失败 (公共成员函数) |
[编辑] 示例
运行此代码
#include <algorithm> #include <iostream> #include <iterator> #include <string> int main() { std::string s = "This is an example\n"; std::copy(s.begin(), s.end(), std::ostreambuf_iterator<char>(std::cout)); }
输出
This is an example
[编辑] 另请参阅
从 std::basic_streambuf 读取的输入迭代器 (类模板) | |
写入 std::basic_ostream 的输出迭代器 (类模板) |