A Tour of the Standard Library

花了点时间看了一下A Tour of the Standard Library,发现C++作者写得非常的详细,易懂,不知道以前为什么没有看这么好的东西。

这章里面以前没有接触到的就是输入输出流的迭代器操作,很有意思,如下代码:

int _tmain(int argc, _TCHAR* argv[])
{
    ostream_iterator<string> oo(cout);
    *oo="What's your name?";
    istream_iterator<string> ii(cin);
    string str=*ii;
    *oo="hello ";
    *oo=str;
    *oo="\n";
    return 0;
}

 

winxos 2010-02-10 11:18

你可能感兴趣的:(职场,library,休闲,Standard,Tour)