Effective STL

- 书名:Effective STL
- 作者: ScottMeyers
- 格式:MOBI,EPUB,AZW3
- 时间:2024-06-19
- 评分:
- ISBN:9787121201257
内容简介:
《Effective STL中文版:50条有效使用STL的经验》是EffectiveC++的第3卷,被评为“值得所有C++程序员阅读的C++书籍之一”。《Effective STL中文版:50条有效使用STL的经验》详细讲述了使用STL的50条指导原则,并提供了透彻的分析和深刻的实例,实用性极强,是C++程序员必备的基础书籍。C++的标准模板库(STL)是革命性的,要用好STL并不容易。《Effective STL中文版:50条有效使用STL的经验》作者ScottMeyers揭示了专家总结的一些关键规则,包括专家们总是采用的做法,以及专家们总是避免的做法。通过这些规则,STL程序员可以最大限度地使用STL。
Scott Meyers,世界顶级C++软件开发技术权威之一。他是两本畅销书Effective C++和More Effective C++的作者,以前曾经是C++ Report的专栏作家。他经常为C/C++ Users Journal和Dr. Dobb's Journal撰稿,也为全球范围内的客户做咨询活动。他也是Advisory Boards for NumeriX LLC和InfoCruiser公司的成员。他拥有Brown University的计算机科学博士学位。
潘爱民,任职于阿里云计算有限公司,担任阿里云OS首席架构师。长期从事软件和系统技术的研究与开发工作,撰写了大量软件技术文章,著译了多部经典计算机图书,在国内外学术刊物上发表了30多篇文章。曾经任教于北京大学和清华大学(兼职)。后进入工业界,先后任职于微软亚洲研究院、盛大网络发展有限...
下载地址:
标签:
文章链接:https://www.dushupai.com/book-content-18616.html(转载时请注明本文出处及文章链接)
最新评论:
更多
-
inapt2014-08-23写的还行。不过看起来那些高级STL用法在real world中用的真不多啊。
-
阿列克斯2019-04-25关于STL一个比较好的介绍,尽管有些内容已经过时,但是好歹算是知道一些STL常见的坑和最佳实践。
-
alucard2013-08-16书本身不错,译者也很专业,但是,我还是灰常BS这种翻译版和原版对不上页码的情况,对errata简直就是自寻死路。。。
最新书摘:
更多
-
JerryZ2015-11-15*To eliminate all objects in a container that have a particular value:If the container is a vector, string, or deque, use the erase-remove idiom.If the container is a list, use list::remove.If the container is a standard associative container, use its erase member function.*To eliminate all objects in a container that satisfy a particular predicate:If the container is a vector, string, or deque, use the erase-remove_if idiom.If the container is a list, use list::remove_if.If the container is a standard associative container, use remove_copy_if and swap, or write a loop to walk the container elements, being sure to postincrement your iterator when you pass it to erase.*To do something inside the loop (in addition to erasing objects):If the container is a standard sequence container...
-
JerryZ2015-11-152.the remove member function is the best way to get rid of elements with a specific value when c is a list.
-
JerryZ2015-11-151.the erase-remove idiom is the best way to get rid of elements with a specific value when c is a vector, string, or deque.
猜你喜欢:
-
英文原版
-
英文原版
-
英文原版
-
英文原版
-
英文原版
-
英文原版
-
英文原版
-
英文原版