第一图书网

C++ Primer 第4版 评注版

Stanley B. Lippman,Josée LaJoie,Barbara Moo 电子工业出版社
出版时间:

2012-7-18  

出版社:

电子工业出版社  

作者:

Stanley B. Lippman,Josée LaJoie,Barbara Moo  

页数:

842  

字数:

132000  

译者:

陈硕  

Tag标签:

无  

内容概要

《C++
Primer(评注版第4版)》是一本系统而权威的C++教材,它全面而深入地讲解了C++语言及其标准库。本书作者Stanley B.
Lippman(李普曼)在20世纪80年代早期即在C++ 之父Bjarne Stroustrup 领导下开发C++
编译器,另一作者Josée
Lajoie(拉乔伊)曾多年担任C++标准委员会核心语言组主席,他们对这门编程语言的理解与把握非常人可比。本书对C++
语法和语义的阐释兼具准确性与可读性,在坊间无出其右者。第4版更吸收了先进的C++
教学经验,在内容组织上对初学者更加友好,详略得当且重点突出,使读者能更快上手编写有用的程序,也更适合自学。全球已有45万人通过该书的各个版本学习了C++
编程。
对于国外技术图书,选择翻译版还是影印版,常常让人陷入两难的境地。本评注版力邀国内资深专家执笔,在英文原著基础上增加中文点评与注释,旨在融合二者之长,既保留经典的原创文字与味道,又以先行者的学研心得与实践感悟,对读者阅读与学习加以点拨、指明捷径。
经过评注的版本,更值得反复阅读与体会。希望这本《C++
Primer(评注版第4版)》能够帮助您跨越C++的重重险阻,领略高处才有的壮美风光,做一个成功而快乐的C++程序员。

作者简介

作者:(美国)李普曼(Stanley B. Lippman) (美国)拉乔伊(Josee Lajoie) (美国)莫(Josee Lajoie) 其他责任者:陈硕 Stanley B.Lippman曾任微软Visual C++团队架构师,他从1984年起在贝尔实验室与C++之父Bjarne Stroustrup一同工作,开发C++编译器。他曾在迪斯尼和梦工厂从事电影动画制作,曾担任美国喷气推进实验室的顾问。他还撰写了《深度探索C++对象模型》等书。 Josee Lajoie,曾就职于IBM加拿大C/C++编译器开发组。为ISO C++标准委员会服务了7年,担任核心语言工作组主席,并是《C++ Report》的专栏作者。 Barbara E.Moo现在是一名独立顾问,具有25年软件研发经验。她在AT&T与Stroustrup和Lippman紧密合作,管理复杂的C++开发项目。Moo和Andrew Koenig一同撰写了《Accelerated C++》和《Ruminations on C++》。 陈硕,北京师范大学硕士,擅长C++多线程网络编程和实时分布式系统架构现任职于香港某跨国金融公司IT部门,从事实时外汇交易系统开发。编写了开源C++网络库Muduo;参与翻译了《代码大全(第2版)》(电子工业出版社出版)和《C++编程规范(繁体版)》(台湾碁峰出版);2009年在上海C++技术大会做技术演讲《当析构函数遇到多线程》,同时担任Stanley B.Lippman先生的日译员;2010年在珠三角技术沙龙做技术演讲《分布式系统的工程化开发方法》;2012年在“我们的开源项目”深圳站做《Muduo网络库:现代非阻塞C++网络编程》演讲。

书籍目录

Preface
Chapter 1 Getting Started (新增评注29 条)
1.1 Writing a Simple C++Program
1.1.1 Compiling and Executing Our Program
1.2 AFitLookat Input/Output
1.2.1 StandardInput andOutputObjects
1.2.2 AProgramthatUses the IOLibrary
1.3 AWordAboutComments
1.4 Control Structures
1.4.1 The whileStatement
1.4.2 The forStatement
1.4.3 The ifStatement
1.4.4 ReadinganUnknownNumberof Inputs
1.5 IntroducingClasses
1.5.1 The Sales_itemClass
1.5.2 AFitLookatMemberFunctio
1.6 The C++Program
Part Ⅰ The Basics
Chapter 2 Variables and Basic Types(新增评注42 条)
2.1 PrimitiveBuilt-inTypes
2.1.1 IntegralTypes
2.1.2 Floating-PointTypes
2.2 LiteralCotants
2.3 Variables
2.3.1 What Is aVariable?
2.3.2 TheNameof aVariable
2.3.3 DefiningObjects
2.3.4 VariableInitializationRules
2.3.5 Declaratio andDefinitio
2.3.6 Scopeof aName
2.3.7 DefineVariablesWhereTheyAreUsed
2.4 cotQualifier
2.5 References
2.6 TypedefNames
2.7 Enumeratio
2.8 ClassTypes
2.9 Writing Our Own Header Files
2.9.1 DesigningOurOwnHeade
2.9.2 ABrief IntroductiontothePreprocessor
Chapter 3 Library Types (新增评注30 条)
3.1 Namespace usingDeclaratio
3.2 Library stringType
3.2.1 Defining and Initializing strings
3.2.2 Reading andWriting strings
3.2.3 Operatio on strings
3.2.4 Dealing with the Characte of a string
3.3 Library vectorType
3.3.1 Defining and Initializing vecto
3.3.2 Operatio on vecto
3.4 IntroducingIterato
3.4.1 IteratorArithmetic
3.5 Library bitsetType
3.5.1 Defining and Initializing bitsets
3.5.2 Operatio on bitsets
Chapter 4 Arrays and Pointe (新增评注33 条)
4.1 Arrays
4.1.1 DefiningandInitializingArrays
4.1.2 OperatioonArrays
4.2 IntroducingPointe
4.2.1 What Is aPointer?
4.2.2 DefiningandInitializingPointe
4.2.3 OperatioonPointe
4.2.4 UsingPointe toAccessArrayElements
4.2.5 Pointe and the cotQualifier
4.3 C-StyleCharacterStrings
4.3.1 DynamicallyAllocatingArrays
4.3.2 InterfacingtoOlderCode
4.4 MultidimeionedArrays
4.4.1 Pointe andMultidimeionedArrays
Chapter 5 Expressio (新增评注49 条)
5.1 ArithmeticOperato
5.2 Relational andLogicalOperato
5.3 TheBitwiseOperato
5.3.1 Using bitsetObjectsor IntegralValues
5.3.2 Usingthe ShiftOperato for IO
5.4 AssignmentOperato
5.4.1 Assignment IsRightAssociative
5.4.2 AssignmentHasLowPrecedence
5.4.3 CompoundAssignmentOperato
5.5 Increment andDecrementOperato
5.6 TheArrowOperator
5.7 TheConditionalOperator
5.8 The sizeofOperator
5.9 CommaOperator
5.10 EvaluatingCompoundExpressio
5.10.1 Precedence
5.10.2 Associativity
5.10.3 OrderofEvaluation
5.11 The new and deleteExpressio
5.12 TypeConveio
5.12.1 WhenImplicitTypeConveioOccur
5.12.2 TheArithmeticConveio
5.12.3 Other ImplicitConveio
5.12.4 ExplicitConveio
5.12.5 WhenCastsMightBeUseful
5.12.6 NamedCasts
5.12.7 Old-StyleCasts
……
Chapter 6 Statements (新增评注29 条)
Chapter 7 Functio (新增评注56 条)
Chapter 8 The IO Library(新增评注11 条)
Part Ⅱ Containe and Algorithms
Chapter 9 Sequential Containe (新增评注54 条)
Chapter 10 Associative Containe (新增评注22 条)
Chapter 11 Generic Algorithms (新增评注18 条)
Part Ⅲ Classes and Data Abstraction
Chapter 12 Classes 429(新增评注26 条)
Chapter 13 Copy Control (新增评注30 条)
Chapter 14 Overloaded Operatio and Conveio (新增评注31 条)
Part Ⅳ Object-Oriented and Generic Programming
Chapter 15 Object-Oriented Programming (新增评注56 条)
Chapter 16 Templates and Generic Programming (新增评注31 条)
Part Ⅴ Advanced Topics
Chapter 17 Tools for Large Programs (新增评注37 条)
Chapter 18 Specialized Tools and Techniques (新增评注22 条)
Appendix A The Library

章节摘录

版权页: Writing to a Stream The first statement in the body of main executes an expression. In C++ an expression is composed of one or more operands and (usually) an operator. The expressions in this statement use the output operator (the


编辑推荐

《C++ Primer(第4版)(评注版)》编辑推荐:经过评注的版本,更值得反复阅读与体会。希望这本书能够帮助您跨越C++ 的重重险阻,领略高处才有的壮美风光,做一个成功而快乐的C++ 程序员。

名人推荐

本书在全世界C++教学领域的突出和重要,已经无须我再赞言。” ——侯捷,汁算饥技术书籍作家、译者、书评人 《C++ Primer》是公认的学习C++的绝佳书藉之一,对各种层次的C++程序员都能带来帮助。第4版巩固并增强了这种地位。” ——Steve Vinoski,IONA Technologies 首席工程师 “本书真的能让你人手学习C++这门庞大而复杂的语言。” ——Justin Shaw. Aerospace集团,编程技术指导委员会资深委员 “本书不仅让初学者尽早上手,还传授良好的编程实践。” ——Nevin“:一)”Liber,总工程师(1988年起其就是C++开发者)

图书封面

图书标签Tags

广告

下载页面


C++ Primer 第4版 评注版 PDF格式下载



英文原版 中文注释配合中文版的c++ prime学习c++之宝典物流配送很好 完整无缺


内容上来说本书无疑是本好书,中文评注提供了一些额外信息,是有些帮助的,不过有些地方也存在小错误。再说付运的实物,有些小瑕疵,是新书且不影响使用。以后翻旧了这些就可以忽略了,算是自我安慰吧。


少年,还是买本汉语地吧!


C++语言绝佳入门之选。原English,加经典中文评注!纸张质量也非常好!价格很优惠!!


慢慢看,顺便学英文,表示这个看完以后就能看别的英文书了吧


英文原版书加上评注,保证了内容的原汁原味又帮助了读者理解,总而言之这本书很不错,适合英语水平较好且有一定编程基础的人。


太久没有买书了,当收到这本书时感觉就和买了新手机一样高兴。首先呢,经典的书内容自不必多说。价格几乎半价的价格真的十分合算。再有就是物流挺不错,包装虽然只有塑料袋,但是从江苏寄到福建书一点也没有折损压痕,书正版清晰!


书印得还不错,不过学习时需要一点基础。


内容十分好,值得推荐。


很实用的一本教材,老外写的就是不一样。


书,的不错的书,还行


这本书很基础,有评注的话看起来不算吃力,很有用的一本书


纸张和印刷很好,以英文原版为主,只在关键的地方有评注,适合自学


很不错,点评的很到位。。。


相关图书