1 #include <stdio.h>
 2 #include <string>
 3 #include <iostream>
 4 #include <iterator>
 5 using namespace std;
 6 ostream_iterator < string > oo(cout);
 7 int main()
 8 {
 9      *oo="huhu";
10      oo++;
11      *oo=" hehe\n";
12 
13 
14     return 0;
15 }

 

posted on 2013-04-28 16:35  宇睿  阅读(78)  评论(0编辑  收藏  举报