-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathOstreamIterator.cpp
29 lines (25 loc) · 1011 Bytes
/
OstreamIterator.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* Demonstrate usage of std::ostream_iterator.
* There are main 5 types of iterator, output iterator is just one of them thus std::ostream_iterator.
*
* Those 5 types are as follows
* 1. Input iterator - program can use to read value from a container
* 2. Output iterator - moving information from a program to a container
* 3. Forward iterator - use only operator++ to go forward in the container
* 4. Bidirectional iterator - can go in either direction
* 5. Random access iterator - provide random access into container
*/
#include <iostream>
#include <iterator>
int main()
{
// template accepts two types
// 1. the type to write to ostream
// 2. the ostream character type
std::ostream_iterator<std::string, char> oIterator(std::cout, "\n");
oIterator = "First line";
// interesting note: operator++ and operator* is no-op
// if peek into header source, it just return reference to itself via `return *this`
*oIterator++ = "Second line";
return 0;
}