std::ostream_iterator
来自 cppreference.com
定义在头文件 <iterator> 中 |
||
template< class T, class CharT = char, |
(直到 C++17) | |
template< class T, class CharT = char, |
(自 C++17 起) | |
std::ostream_iterator
是一个单遍 LegacyOutputIterator,它使用 operator<<
将类型为 T
的连续对象写入为其构造的 std::basic_ostream 对象。可选分隔符字符串在每次写入操作后写入输出流。当迭代器(无论是否解引用)被赋值时,就会执行写入操作。递增 std::ostream_iterator
是一个无操作。
在典型实现中,std::ostream_iterator
的唯一数据成员是关联的 std::basic_ostream
的指针和分隔符字符串中第一个字符的指针。
在写入字符时,std::ostreambuf_iterator 效率更高,因为它避免了每次字符构建和销毁哨兵对象的开销。
内容 |
[编辑] 成员类型
成员类型 | 定义 | ||||
iterator_category
|
std::output_iterator_tag | ||||
value_type
|
void | ||||
difference_type
|
| ||||
pointer
|
void | ||||
reference
|
void | ||||
char_type
|
CharT
| ||||
traits_type
|
Traits
| ||||
ostream_type
|
std::basic_ostream<CharT, Traits> |
成员类型 |
(直到 C++17) |
[编辑] 成员函数
构造一个新的 ostream_iterator (公有成员函数) | |
析构一个 ostream_iterator (公有成员函数) | |
将一个对象写入关联的输出序列 (公有成员函数) | |
无操作 (公有成员函数) | |
无操作 (公有成员函数) |
[编辑] 示例
运行此代码
#include <iostream> #include <iterator> #include <numeric> #include <sstream> int main() { std::istringstream str("0.11 0.22 0.33 0.44"); std::partial_sum(std::istream_iterator<double>(str), std::istream_iterator<double>(), std::ostream_iterator<double>(std::cout, ", ")); std::cout << '\n'; }
输出
0.11, 0.33, 0.66, 1.1,
[编辑] 另请参见
写入 std::basic_streambuf 的输出迭代器 (类模板) | |
从 std::basic_istream 读取的输入迭代器 (类模板) | |
(库基础 TS v2) |
一个输出迭代器,它将连续的元素写入输出流,并用分隔符分隔相邻元素 (类模板) |