documentation for STL [closed]

孤者浪人 提交于 2019-12-02 23:17:47
Maciek

Here is the reference I'm using. SGI , Offline Download

Here is another reference

If you want dead trees, maybe you'd be better off with a proper book? I found this one indispensable: The C++ Standard Library: A Tutorial and Reference by Nicolai M. Josuttis

In general, it is best to use the documentation that comes with your C++ toolchain. For general-purpose docs, I like the GNU libstdc++ documentation.

If you're looking for a proper reference, then, truly, nothing can beat "ISO/IEC 14882:2003 - Programming Language C++" - after all, it's the primary source. I'm not aware of any legal way to get the PDF for that for free. You can buy the PDF from ISO, but they ask ~$300 for that, way too much in my opinion. A cheaper option is to go to one of the national standard bodies that make ISO - they republish those standards under their own name (but otherwise unchanged), and usually the prices are more sane. The cheapest paper version I'm aware of is published by British Standards Institute - available on Amazon for $85. The cheapest download PDF seems to be $40 from the shop of the Australian member organization.

If you are going to do C++, then you need the book "The C++ Programming Language" by Stroustrup. It makes an excellent reference to the STL. I refer to it all the time for all things related to algorithms and containers.

If you need more of a hands-on tutorial approach, then try the Josuttis book as recommended by Mark Ransom.

Dima

And once you are done reading all the references suggested here, be sure to take a look at "Effective STL" by Scott Meyers.

This link surely is old, here is a link for downloading STL documentation in different formats thought will be helpful for enthusiasts like me:

http://www.informatik.uni-freiburg.de/~danlee/fun/STL-doc/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!