成功加入购物车

去购物车结算 X
粤读二手书店
  • C++Primer(英文版)(第4版)

C++Primer(英文版)(第4版)

举报

书籍均为精品二手图书品相85品以上,出库会经过高温消毒,书籍上架都会检测可保证正版!!

  • 作者: 
  • 出版社:    "人民邮电出版社
  • ISBN:    9787115151698
  • 出版时间: 
  • 装帧:    平装
  • 开本:    16开
  • 纸张:    胶版纸
  • 作者: 
  • 出版社:  "人民邮电出版社
  • ISBN:  9787115151698
  • 出版时间: 
  • 装帧:  平装
  • 开本:  16开
  • 纸张:  胶版纸

售价 36.60 3.7折

定价 ¥99.00 

品相 九品品相描述

优惠 满包邮

优惠 满减券
    运费
    本店暂时无法向该地区发货

    延迟发货说明

    时间:
    说明:

    上书时间2023-11-10

    数量
    库存2
    微信扫描下方二维码
    微信扫描打开成功后,点击右上角”...“进行转发

    卖家超过10天未登录

    • 商品详情
    • 店铺评价
    手机购买
    微信扫码访问
    • 商品分类:
      计算机与互联网
      货号:
      970214091190697985
      品相描述:九品
      本店所售书籍均精品二手正版书书籍,严格审核品相为85品以上,出库会经过高温消毒,由于成本增加,所售书籍价格略高,运费首本5元,每增加一本运费加2元,每天下午2点前订单一般当天发出,最迟48小时内发出,二手书不保证100%没有任何笔记,有时会出现缺货现象,我们会第一时间告知您,感谢理解与支持。
      商品描述:
      以下信息以网上匹配仅供参考,不支持以此为由退款
      内容简介:

                                                “在遇到无法解决的问题时,我总会求助于C++Primer一书。”——Bruce·Eckel,“编程思想”系列图书作者

        “众所周知,C++Primer是学习C++最理想的参考书之一,适用于各种水平的C++程序员。第4版不但保持了这种传统,而且有了很大改善。”——STEVE?VINOSKI,IONA科技公司首席工程师,CORBA与C++权威。

        “《C++Primer(英文版)(第4版)》真正揭示了C++这一大型、复杂语言的本质。”——JUSTIN?SHAW,Aerospace公司电子程序部技术处资深成员

        “(本书)不但使初学者迅速入门,而且是用优秀的编程实践引导他们入门。”——NEVIN?LIBER,资深工程师(自1988年起一直是C++开发者)

        C++诞生20年后,因其强大的功能、广泛的适用性和极高的效率,已经成为无庸置疑的主流编程语言。但是C++语言也不得不面对这样的挑战:其博大精深不仅令初学者望而生畏,而且即使是许多富于经验的老手也很难全面掌握,更有不少C++程序员一直背负着C语言的历史包袱,常常落入各种微妙难解的安全和性能陷阱。如何使现代C++理念深入人心,使C++更加容易学习和使用,已经成为众所瞩目的焦点。

        《C++Primer(英文版)(第4版)》是久负盛名的C++经典教程,已经帮助全球无数程序员学会了C++。这一全新版本进行了彻底的修订,章节内容和编排都经过了重新组织,既显著改善了可读性,又充分体现了C++语言的最新进展和当前的业界最佳实践。《C++Primer》(英文版)(第4版)(图灵原版计算机科学系列)是C++大师Stan?B?Lippman丰富的实践经验和C++标准委员会原负责人Josée·Lajoie对C++标准深入理解的完美结合。新版更加入了C++先驱Barbara?E?Moo在C++教学方面的真知灼见。对C++基本概念和技术全面而且权威的阐述,对现代C++编程风格的强调,使本书不仅依然是初学者的最佳C++指南,而且即使对于中高级程序员,本书也是不可或缺的参考书。                                   
      目录:

                                              Chapter1GettingStarted

      1.1WritingaSimpleC++Program

      1.1.1CompilingandExecutingOurProgram

      1.2AFirstLookatInput/Output

      1.2.1StandardInputandOutputObjects

      1.2.2AProgramthatUsestheIOLibrary

      1.3AWordAboutComments

      1.4ControlStructures

      1.4.1ThewhileStatement

      1.4.2TheforStatement

      1.4.3TheifStatement

      1.4.4ReadinganUnknownNumberofInputs

      1.5IntroducingClasses

      1.5.1TheSales_itemClass

      1.5.2AFirstLookatMemberFunctions

      1.6TheC++Program

      ChapterSummary

      DefinedTerms



      PartITheBasics

      Chapter2VariablesandBasicTypes

      2.1PrimitiveBuilt-inTypes

      2.1.1IntegralTypes

      2.1.2Floating-PointTypes

      2.2LiteralConstants

      2.3Variables

      2.3.1WhatIsaVariable?

      2.3.2TheNameofaVariable

      2.3.3DefiningObjects

      2.3.4VariableInitializationRules

      2.3.5DeclarationsandDefinitions

      2.3.6ScopeofaName

      2.3.7DefineVariablesWhereTheyAreUsed

      2.4constQualifier

      2.5References

      2.6TypedefNames

      2.7Enumerations

      2.8ClassTypes

      2.9WritingOurOwnHeaderFiles

      2.9.1DesigningOurOwnHeaders

      2.9.2ABriefIntroductiontothePreprocessor

      ChapterSummary

      DefinedTerms

      Chapter3LibraryTypes

      3.1NamespaceusingDeclarations

      3.2LibrarystringType

      3.2.1DefiningandInitializingstrings

      3.2.2ReadingandWritingstrings

      3.2.3Operationsonstrings

      3.2.4DealingwiththeCharactersofastring

      3.3LibraryvectorType

      3.3.1DefiningandInitializingvectors.

      3.3.2Operationsonvectors

      3.4IntroducingIterators

      3.4.1IteratorArithmetic

      3.5LibrarybitsetType

      3.5.1DefiningandInitializingbitsets

      3.5.2Operationsonbitsets

      ChapterSummary

      DefinedTerms

      Chapter4ArraysandPointers

      4.1Arrays

      4.1.1DefiningandInitializingArrays

      4.1.2OperationsonArrays

      4.2IntroducingPointers

      4.2.1WhatIsaPointer?

      4.2.2DefiningandInitializingPointers

      4.2.3OperationsonPointers

      4.2.4UsingPointerstoAccessArrayElements

      4.2.5PointersandtheconstQualifier

      4.3C-StyleCharacterStrings

      4.3.1DynamicallyAllocatingArrays

      4.3.2InterfacingtoOlderCode

      4.4MultidimensionedArrays

      4.4.1PointersandMultidimensionedArrays

      ChapterSummary

      DefinedTerms

      Chapter5Expressions

      5.1ArithmeticOperators

      5.2RelationalandLogicalOperators

      5.3TheBitwiseOperators

      5.3.1UsingbitsetObjectsorIntegralValues

      5.3.2UsingtheShiftOperatorsforIO

      5.4AssignmentOperators

      5.4.1AssignmentIsRightAssociative

      5.4.2AssignmentHasLowPrecedence

      5.4.3CompoundAssignmentOperators

      5.5IncrementandDecrementOperators

      5.6TheArrowOperator

      5.7TheConditionalOperator

      5.8ThesizeofOperator

      5.9CommaOperator

      5.10EvaluatingCompoundExpressions

      5.10.1Precedence

      5.10.2Associativity

      5.10.3OrderofEvaluation

      5.11ThenewanddeleteExpressions

      5.12TypeConversions

      5.12.1WhenImplicitTypeConversionsOccur

      5.12.2TheArithmeticConversions

      5.12.3OtherImplicitConversions

      5.12.4ExplicitConversions

      5.12.5WhenCastsMightBeUseful

      5.12.6NamedCasts

      5.12.7Old-StyleCasts

      ChapterSummary

      DefinedTerms

      Chapter6Statements

      6.1SimpleStatements

      6.2DeclarationStatements

      6.3CompoundStatements(Blocks)

      6.4StatementScope

      6.5TheifStatement

      6.5.1TheifStatementelseBranch

      6.6TheswitchStatement

      6.6.1Usingaswitch

      6.6.2ControlFlowwithinaswitch

      6.6.3ThedefaultLabel

      6.6.4switchExpressionandCaseLabels

      6.6.5VariableDefinitionsinsideaswitch

      6.7ThewhileStatement

      6.8TheforLoopStatement

      6.8.1OmittingPartsoftheforHeader

      6.8.2MultipleDefinitionsintheforHeader

      6.9ThedowhileStatement

      6.10ThebreakStatement

      6.11ThecontinueStatement

      6.12ThegotoStatement

      6.13tryBlocksandExceptionHandling

      6.13.1AthrowExpression

      6.13.2ThetryBlock

      6.13.3StandardExceptions

      6.14UsingthePreprocessorforDebugging

      ChapterSummary

      DefinedTerms

      Chapter7Functions

      Chapter8TheIOLibrary



      PartIIContainersandAlgorithms

      Chapter9SequentialContainers

      Chapter10AssociativeContainers

      Chapter11GenericAlgorithms



      PartIIIClassesandDataAbstraction

      Chapter12Classes

      Chapter13CopyControl

      Chapter14OverloadedOperationsandConversions



      PartⅣObject-OrientedandGenericProgramming

      Chapter15Object-OrientedProgramming

      Chapter16TemplatesandGenericProgramming



      PartⅤAdvancedTopics

      Chapter17ToolsforLargePrograms

      Chapter18SpecializedToolsandTechniques



      AppendixATheLibrary

      Index                                    

      配送说明

      ...

      相似商品

      为你推荐

    孔网啦啦啦啦啦纺织女工火锅店第三课

    开播时间:09月02日 10:30

    即将开播,去预约
    直播中,去观看