stl reference

来源:互联网 发布:网络直播的发展史 编辑:程序博客网 时间:2024/05/18 21:47
http://www.msoe.edu/eecs/ce/courseinfo/stl/

介绍一个轻量级的C++开发工具——Relo

http://www.xraylith.wisc.edu/~khan/software/stl/STL.newbie.html

http://www.cs.brown.edu/people/jak/proglang/cpp/stltut/tut.html

虚继承之单继承的内存布局

The std::endl part of the code above is of special interest. (By the way, it's pronounced end ell; the last character is the lowercase letter L, not the number 1.). It's a manipulator; that is, an argument that affects the I/O operation is a certain way. The endl manipulator, for example, has two effects:

  • It forces output flushing, meaning that it causes cout to output its buffered contents immediately.

  • It appends a line break after the output operation.

c++ 参考手册