• C++ Primer
21年品牌 40万+商家 超1.5亿件商品

C++ Primer

25 2.3折 108 九五品

仅1件

北京通州
认证卖家担保交易快速发货售后保障

作者(美)李普曼,(美)拉乔伊,(美)莫 著,陈硕评注

出版社电子工业出版社

ISBN9787121174414

出版时间2012-07

版次1

装帧平装

开本16开

纸张胶版纸

页数662页

字数99999千字

定价108元

上书时间2024-04-07

灵感飞驰

已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:九五品
商品描述
基本信息
书名:C++ Primer
定价:108元
作者:(美)李普曼,(美)拉乔伊,(美)莫 著,陈硕评注
出版社:电子工业出版社
出版日期:2012-07-01
ISBN:9787121174414
字数:1320000
页码:662
版次:1
装帧:平装
开本:大16开
商品重量:
编辑推荐
     《C  Primer(评注版第4版)》是一本C  语言的教程,不是编程教程本书的例子和习题往往都跟C  本身直接相关。本书的主要内容是精解C  语法(syntax)与语意(semantics),并介绍C  标准库的大部分内容(含STL)。“这本书在全世界C  教学领域的突出和重要,已经无须我再赘言。”本书适合C  语言的初学者,但不适合编程初学者。作者Stanley B. Lippman(李普曼)在20世纪80年代早期即在C  之父Bjarne Stroustrup 领导下开发C   编译器,另一作者JoséeLajoie(拉乔伊)曾多年担任C  标准委员会核心语言组主席,他们对这门编程语言的理解与把握非常人可比。
内容提要
《C  Primer(评注版第4版)》是一本系统而的C  教材,它全面而深入地讲解了C  语言及其标准库。本书作者Stanley B.Lippman(李普曼)在20世纪80年代早期即在C   之父Bjarne Stroustrup 领导下开发C  编译器,另一作者JoséeLajoie(拉乔伊)曾多年担任C  标准委员会核心语言组主席,他们对这门编程语言的理解与把握非常人可比。本书对C  语法和语义的阐释兼具准确性与可读性,在坊间无出其右者。第4版更吸收了先进的C  教学经验,在内容组织上对初学者更加友好,详略得当且重点突出,使读者能更快上手编写有用的程序,也更适合自学。全球已有45万人通过该书的各个版本学习了C  编程。  对于国外技术图书,选择翻译版还是,常常让人陷入两难的境地。本评注版力邀国内资深专家执笔,在英文原著基础上增加中文点评与注释,旨在融合二者之长,既保留经典的原创文字与味道,又以先行者的学研心得与实践感悟,对读者阅读与学习加以点拨、指明捷径。  经过评注的版本,更值得反复阅读与体会。希望这本《C  Primer(评注版第4版)》能够帮助您跨越C  的重重险阻,领略高处才有的壮美风光,做一个成功而快乐的C  程序员。
目录
PrefaceChapter 1 Getting Started (新增评注29 条)1.1 Writing a Simple C  Program1.1.1 Compiling and Executing Our Program1.2 AFirstLookat Input/Output1.2.1 StandardInput andOutputObjects1.2.2 AProgramthatUses the IOLibrary1.3 AWordAboutComments1.4 Control Structures1.4.1 The whileStatement1.4.2 The forStatement1.4.3 The ifStatement1.4.4 ReadinganUnknownNumberof Inputs1.5 IntroducingClasses1.5.1 The Sales_itemClass1.5.2 AFirstLookatMemberFunctions1.6 The C  ProgramPart Ⅰ The BasicsChapter 2 Variables and Basic Types(新增评注42 条)2.1 PrimitiveBuilt-inTypes2.1.1 IntegralTypes2.1.2 Floating-PointTypes2.2 LiteralConstants2.3 Variables2.3.1 What Is aVariable?2.3.2 TheNameof aVariable2.3.3 DefiningObjects2.3.4 VariableInitializationRules2.3.5 Declarations andDefinitions2.3.6 Scopeof aName2.3.7 DefineVariablesWhereTheyAreUsed2.4 constQualifier2.5 References2.6 TypedefNames2.7 Enumerations2.8 ClassTypes2.9 Writing Our Own Header Files2.9.1 DesigningOurOwnHeaders2.9.2 ABrief IntroductiontothePreprocessorChapter 3 Library Types (新增评注30 条)3.1 Namespace usingDeclarations3.2 Library stringType3.2.1 Defining and Initializing strings3.2.2 Reading andWriting strings3.2.3 Operations on strings3.2.4 Dealing with the Characters of a string3.3 Library vectorType3.3.1 Defining and Initializing vectors3.3.2 Operations on vectors3.4 IntroducingIterators3.4.1 IteratorArithmetic3.5 Library bitsetType3.5.1 Defining and Initializing bitsets3.5.2 Operations on bitsetsChapter 4 Arrays and Pointers (新增评注33 条)4.1 Arrays4.1.1 DefiningandInitializingArrays4.1.2 OperationsonArrays4.2 IntroducingPointers4.2.1 What Is aPointer?4.2.2 DefiningandInitializingPointers4.2.3 OperationsonPointers4.2.4 UsingPointers toAccessArrayElements4.2.5 Pointers and the constQualifier4.3 C-StyleCharacterStrings4.3.1 DynamicallyAllocatingArrays4.3.2 InterfacingtoOlderCode4.4 MultidimensionedArrays4.4.1 Pointers andMultidimensionedArraysChapter 5 Expressions (新增评注49 条)5.1 ArithmeticOperators5.2 Relational andLogicalOperators5.3 TheBitwiseOperators5.3.1 Using bitsetObjectsor IntegralValues5.3.2 Usingthe ShiftOperators for IO5.4 AssignmentOperators5.4.1 Assignment IsRightAssociative5.4.2 AssignmentHasLowPrecedence5.4.3 CompoundAssignmentOperators5.5 Increment andDecrementOperators5.6 TheArrowOperator5.7 TheConditionalOperator5.8 The sizeofOperator5.9 CommaOperator5.10 EvaluatingCompoundExpressions5.10.1 Precedence5.10.2 Associativity5.10.3 OrderofEvaluation5.11 The new and deleteExpressions5.12 TypeConversions5.12.1 WhenImplicitTypeConversionsOccur5.12.2 TheArithmeticConversions5.12.3 Other ImplicitConversions5.12.4 ExplicitConversions5.12.5 WhenCastsMightBeUseful5.12.6 NamedCasts5.12.7 Old-StyleCasts……Chapter 6 Statements (新增评注29 条)Chapter 7 Functions (新增评注56 条)Chapter 8 The IO Library(新增评注11 条)Part Ⅱ Containers and AlgorithmsChapter 9 Sequential Containers (新增评注54 条)Chapter 10 Associative Containers (新增评注22 条)Chapter 11 Generic Algorithms (新增评注18 条)Part Ⅲ Classes and Data AbstractionChapter 12 Classes 429(新增评注26 条)Chapter 13 Copy Control (新增评注30 条)Chapter 14 Overloaded Operations and Conversions (新增评注31 条)Part Ⅳ Object-Oriented and Generic ProgrammingChapter 15 Object-Oriented Programming (新增评注56 条)Chapter 16 Templates and Generic Programming (新增评注31 条)Part Ⅴ Advanced TopicsChapter 17 Tools for Large Programs (新增评注37 条)Chapter 18 Specialized Tools and Techniques (新增评注22 条)Appendix A The Library
作者介绍

序言

—  没有更多了  —

以下为对购买帮助不大的评价

此功能需要访问孔网APP才能使用
暂时不用
打开孔网APP