• C++大学基础教程(第5版)(英文版)
21年品牌 40万+商家 超1.5亿件商品

C++大学基础教程(第5版)(英文版)

12.98 1.9折 69 九品

仅1件

河南周口
认证卖家担保交易快速发货售后保障

作者[美]戴特尔 著

出版社电子工业出版社

出版时间2010-10

版次5

装帧平装

上书时间2024-03-13

是家旧书店

四年老店
已实名 已认证 进店 收藏店铺

   商品详情   

品相描述:九品
图书标准信息
  • 作者 [美]戴特尔 著
  • 出版社 电子工业出版社
  • 出版时间 2010-10
  • 版次 5
  • ISBN 9787121118586
  • 定价 69.00元
  • 装帧 平装
  • 开本 16开
  • 纸张 胶版纸
  • 页数 573页
  • 字数 1112千字
【内容简介】
《C++大学基础教程(第5版)(英文版)(附光盘1张)》详细介绍了C++面向对象编程的核心概念和方法。与前几版相比,《C++大学基础教程(第5版)(英文版)(附光盘1张)》从内容和结构上都做了较大幅度的修订和有意义的提升特别是在“尽早接触类和对象”这一观点的指导下,从第1章就开始涉及类和对象的内容,从而突破了传统教学程序,使学生直接“考虑对象”和更彻底地掌握面向对象的基本概念。《C++大学基础教程(第5版)(英文版)(附光盘1张)》共分13章,详细讲解了计算机与互联网的基本概念、C++编程基础、类与对象的知识及控制语句等,细致分析了函数和递归、数组和标准库类模板、指针和字符串、运算符重载及继承与多态等C++常见主题。通过大量的“活代码”例程,尤其是贯穿多个章节的若干综合性实例研究,对每个新概念都用完整的、能实际运行的C++程序进行介绍,并以403条凝结了60多年编程和教学经验的六类编程提示,使学生将学习重点放在程序开发的关键部分。
《C++大学基础教程(第5版)(英文版)(附光盘1张)》适合作为双语教学教材,是所有对C++编程感兴趣的读者的有益参考书,既可作为高等院校计算机及相关专业的教材,也可供各类软件开发人员参考。
【目录】
Chapter1IntroductiontoComputers,theInternetandWorldWideWeb
1.1Introduction
1.2WhatIsaComputer?
1.3ComputerOrganization
1.4EarlyOperatingSystems
1.5Personal,DistributedandClient/ServerComputing
1.6TheInternetandtheWorldWideWeb
1.7MachineLanguages,AssemblyLanguagesandHigh-LevelLanguages
1.8HistoryofCandC++
1.9C++StandardLibrary
1.10HistoryofJava
1.11FORTRAN,COBOL,PascalandAda
1.12Basic,VisualBasic,VisualC++,C#and.NET
1.13KeySoftwareTrend:ObjectTechnology
1.14TypicalC++DevelopmentEnvironment
1.15NotesAboutC++andSmallC++HowtoProgram,5/e11
1.16Test-DrivingaC++Application
1.17IntroductiontoObjectTechnologyandtheUML
1.18Wrap-Up
1.19WebResources
Chapter2IntroductiontoC++Programming
2.1Introduction
2.2FirstPrograminC++:PrintingaLineofText
2.3ModifyingOurFirstC++Program
2.4AnotherC++Program:AddingIntegers
2.5MemoryConcepts
2.6Arithmetic
2.7DecisionMaking:EqualityandRelationalOperators
2.8Wrap-Up
Chapter3IntroductiontoClassesandObjects
3.1Introduction
3.2Classes,Objects,MemberFunctionsandDataMembers
3.3OverviewoftheChapterExamples
3.4DefiningaClasswithaMemberFunction
3.5DefiningaMemberFunctionwithaParameter
3.6DataMembers,setFunctionsandgetFunctions
3.7InitializingObjectswithConstructors
3.8PlacingaClassinaSeparateFileforReusability
3.9SeparatingInterfacefromImplementation
3.10ValidatingDatawithsetFunctions
3.11Wrap-Up
Chapter4ControlStatements:Part1
4.1Introduction
4.2Algorithms
4.3Pseudocode
4.4ControlStructures
4.5ifSelectionStatement
4.6if...elseDouble-SelectionStatement
4.7whileRepetitionStatement
4.8FormulatingAlgorithms:Counter-ControlledRepetition
4.9FormulatingAlgorithms:Sentinel-ControlledRepetition
4.10FormulatingAlgorithms:NestedControlStatements
4.11AssignmentOperators
4.12IncrementandDecrementOperators
4.13Wrap-Up
Chapter5ControlStatements:Part2
5.1Introduction
5.2EssentialsofCounter-ControlledRepetition
5.3forRepetitionStatement
5.4ExamplesUsingtheforStatement
5.5do...whileRepetitionStatement
5.6switchMultiple-SelectionStatement
5.7breakandcontinueStatements
5.8LogicalOperators
5.9ConfusingEquality(==)andAssignment(=)Operators
5.10StructuredProgrammingSummary
5.11Wrap-Up
Chapter6FunctionsandanIntroductiontoRecursion159
6.1Introduction
6.2ProgramComponentsinC++
6.3MathLibraryFunctions
6.4FunctionDefinitionswithMultipleParameters
6.5FunctionPrototypesandArgumentCoercion
6.6C++StandardLibraryHeaderFiles
6.7CaseStudy:RandomNumberGeneration
6.8CaseStudy:GameofChanceandIntroducingenum
6.9StorageClasses
6.10ScopeRules
6.11FunctionCallStackandActivationRecords
6.12FunctionswithEmptyParameterLists
6.13InlineFunctions
6.14ReferencesandReferenceParameters
6.15DefaultArguments
6.16UnaryScopeResolutionOperator
6.17FunctionOverloading
6.18FunctionTemplates
6.19Recursion
6.20ExampleUsingRecursion:FibonacciSeries
6.21Recursionvs.Iteration
6.22Wrap-Up
Chapter7ArraysandVectors218
Chapter8PointersandPointer-BasedStrings
Chapter9Classes:ADeeperLook,Part1
Chapter10Classes:ADeeperLook,Part2
Chapter11OperatorOverloading;StringandArrayObjects
Chapter12Object-OrientedProgramming:Inheritance
Chapter13Object-OrientedProgramming:Polymorphism
AppendixAOperatorPrecedenceandAssociativityChart
AppendixBASCIICharacterSet
AppendixCFundamentalTypes
AppendixDNumberSystems
AppendixEC++InternetandWebResources
AppendixFUsingtheVisualStudio.NETDebugger
AppendixGUsingtheGNUC++Debugger
Bibliography
Index
点击展开 点击收起

   相关推荐   

—  没有更多了  —

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

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