C++程序设计(英文版·第3版)
书籍均为精品二手图书,出库会经过高温消毒,书籍上架都会检测可保证正版,在线咨询商品可自动为您显示当前库存!
¥
17.5
2.2折
¥
79
八五品
仅1件
作者[美]梁勇(Y.Daniel Liang) 著
出版社机械工业出版社
出版时间2013-06
版次1
装帧平装
货号974196954588250114
上书时间2024-12-22
商品详情
- 品相描述:八五品
-
本店所售书籍均精品二手正版书书籍,严格审核品相为85品以上,出库会经过高温消毒,由于成本增加,所售书籍价格略高,每天下午2点前订单一般当天发出,最迟48小时内发出,二手书不保证100%没有任何笔记,有时会出现缺货现象(可在线咨询发送商品链接会自助显示当前实时库存,有库存再下单哦!),我们会第一时间告知您,感谢理解与支持。
图书标准信息
-
作者
[美]梁勇(Y.Daniel Liang) 著
-
出版社
机械工业出版社
-
出版时间
2013-06
-
版次
1
-
ISBN
9787111425052
-
定价
79.00元
-
装帧
平装
-
开本
16开
-
纸张
胶版纸
-
页数
689页
-
字数
100千字
-
正文语种
英语
-
原版书名
Introduction to Programming with C++,Third Edition
-
丛书
经典原版书库
- 【内容简介】
-
《经典原版书库:C++程序设计(英文版·第3版)》保持了Liang博士系列丛书中一贯的标志性的教与学的哲学:以实例教,由实践学。通过使用他所提出的已经经过实践检验的“基础先行”的方法,Liang博士在《经典原版书库:C++程序设计(英文版·第3版)》中通过大量实例阐明了基本的C++特性,使得学生可以通过实践来更有效地进行学习。
在引入面向对象程序设计思想之前,Liang博士使用清晰简明的语言介绍了C++语言的基础概念和基本的程序设计技术,如循环、逐步求精等。这些概念都是使用简短且吸引人的实例来进行阐明的。他还在实例研究中给出了一些较大规模的例子,对这些实例,进行了整体的分析讨论和详细的逐行注解。
《经典原版书库:C++程序设计(英文版·第3版)》可以帮助学生循序渐进地学习所有必须和重要的基本概念,然后再进入到面向对象程序设计方法的学习,最终掌握构建具有异常处理和输入输出功能的有意义的应用程序的方法。贯穿全书的实例和练习都以问题求解为中心,试图培养学生开发可重用组件并创建实际项目的意识。
- 【作者简介】
-
Y.DanielLiang普度大学终身教授,阿姆斯特朗亚特兰大州立大学计算机科学系教授。他所编写的Java教程在美国大学Java课程中采用率极高,同时他还兼任PrenticeHallJava系列丛书的编辑。
- 【目录】
-
Chapter1IntroductiontoComputers,Programs,andC++
1.1Introduction
1.2WhatisaComputer?
1.3ProgrammingLanguages
1.4OperatingSystems
1.5HistoryofC++
1.6ASimpleC++Program
1.7C++Program-DevelopmentCycle
1.8ProgrammingStyleandDocumentatjon
1.9ProgrammingErrors
Chapter2ElementaryProgramming
2.1Introduction
2.2WritingaSimpleProgram
2.3ReadinginputfromtheKeyboard
2.4Identifiers
2.5Variables
2.6AssignmentStatementsandAssignmentExpressions
2.7NamedConstants
2.8NumericDataTypesandOperations
2.9EvaluatingExpressionsandOperatorPrecedence
2.10CaseStudy:DisplayingtheCurrentTime
2.11AugmentedAssignmentOperators.
2.12IncrementandDecrementOperators
2.13NumericTypeConversions
2.14SoftwareDevelopmentProcess
2.15CaseStudy:CountingMonetaryUnits
2.16CommonErrors
Chapter3Selections
3.1Introduction
3.2TheboolDataType
3.3ifStatements
3.4Two-Wayif-elseStatements
3.5NestedifandMulti-Wayif-elseStatements
3.6CommonErrorsandPitfalls
3.7CaseStudy:ComputingBodyMassIndex
3.8CaseStudy:ComputingTaxes
3.9GeneratingRandomNumbers
3.10LogicalOperators
3.11CaseStudy:DeterminingLeapYear
3.12CaseStudy:Lottery
3.13switchStatements
3.14ConditionalExpressions
3.15OperatorPrecedenceandAssociativity
3.16Debugging
Chapter4MathematicalFunctions,characters,andStrings
4.1Introduction
4.2MathematicalFunctions
4.3CharacterDataTypeandOperations
4.4CaseStudy:GeneratingRandomCharacters
4.5CaseStudy:GuessingBirthdays
4.6CharacterFunctions
4.7CaseStudy:ConvertingaHexadecimalDigittoaDecimalValue
4.8ThestringType
4.9CaseStudy:RevisingtheLotteryProgramUsingStrings
4.10FormattingConsoleOutput
4.11SimpleFileInputandOutput
Chapter5Loops
5.1Introduction
5.2ThewhileLoop
5.3Thedo-whileLoop
5.4TheforLoop
5.5WhichLooptoUse?
5.6NestedLoops
5.7MinimizingNumericErrors
5.8CaseStudies
5.9Keywordsbreakandcontinue
5.10CaseStudy:CheckingPalindromes
5.11CaseStudy:DisplayingPrimeNumbers
Chapter6Functions
6.1Introduction
6.2DefiningaFunction
6.3CallingaFunction
6.4voidFunctions
6.5PassingArgumentsbyValue
6.6ModularizingCode
6.7OverloadingFunctions
6.8FunctionPrototypes
6.9DefaultArguments
6.10InlineFunctions
6.11Local,Global,andStaticLocalVariables
6.12PassingArgumentsbyReference
6.13ConstantReferenceParameters
6.14CaseStudy:ConvertingHexadecimalstoDecimals
6.15FunctionAbstractionandStepwiseRefinement
Chapter7Single-DimensionalArraysandC-Strings
7.1Introduction
7.2ArrayBasics
7.3Problem:LottoNumbers
……
Chapter8MultidimensionalArrays
Chapter9ObjectsandClasses
Chapter10Object-OrientedThinking
Chapter11PointersandDynamicMemoryManagement
Chapter12Templates,Vectors,andstacks
Chapter13FileInputandOutput
Chapter14OperatorOverloading
Chapter15InheritanceandPolymorphism
Chapter16ExceptionHanding
Chapter17Recursion
APPENDIXES
INDEX
CREDIT
点击展开
点击收起
— 没有更多了 —
本店所售书籍均精品二手正版书书籍,严格审核品相为85品以上,出库会经过高温消毒,由于成本增加,所售书籍价格略高,每天下午2点前订单一般当天发出,最迟48小时内发出,二手书不保证100%没有任何笔记,有时会出现缺货现象(可在线咨询发送商品链接会自助显示当前实时库存,有库存再下单哦!),我们会第一时间告知您,感谢理解与支持。
以下为对购买帮助不大的评价