中图网(原中国图书网):网上书店,尾货特色书店,30万种特价书低至2折!

歡迎光臨中圖網(wǎng) 請(qǐng) | 注冊(cè)
> >>
C++大學(xué)教程-(第八版)-(英文版)

包郵 C++大學(xué)教程-(第八版)-(英文版)

出版社:電子工業(yè)出版社出版時(shí)間:2015-08-01
開本: 16開 頁數(shù): 806
本類榜單:教材銷量榜
中 圖 價(jià):¥97.2(7.2折) 定價(jià)  ¥135.0 登錄后可看到會(huì)員價(jià)
加入購物車 收藏
開年大促, 全場(chǎng)包郵
?新疆、西藏除外
本類五星書更多>

C++大學(xué)教程-(第八版)-(英文版) 版權(quán)信息

C++大學(xué)教程-(第八版)-(英文版) 本書特色

本書是一本c++編程方面的優(yōu)秀教材,全面介紹了面向?qū)ο缶幊痰脑砗头椒ǎ敿?xì)分析了與c++編程有關(guān)的技術(shù),具體包括類與對(duì)象、控制語句、函數(shù)與遞歸、數(shù)組、指針、運(yùn)算符重載、繼承、多態(tài)、模板、流輸入/輸出、異常處理、文件處理、搜索與排序、數(shù)據(jù)結(jié)構(gòu)、標(biāo)準(zhǔn)模板庫等內(nèi)容,本書的同步學(xué)習(xí)網(wǎng)站上還包含了更多的擴(kuò)展內(nèi)容。全書以“活代碼”方式詳細(xì)分析了每個(gè)知識(shí)要點(diǎn),是初學(xué)者和中高級(jí)程序員學(xué)習(xí)c++編程的理想用書。

C++大學(xué)教程-(第八版)-(英文版) 內(nèi)容簡(jiǎn)介

本書是一本C++編程方面的優(yōu)秀教材,全面介紹了面向?qū)ο缶幊痰脑砗头椒ǎ敿?xì)分析了與C++編程有關(guān)的技術(shù),具體包括類與對(duì)象、控制語句、函數(shù)與遞歸、數(shù)組、指針、運(yùn)算符重載、繼承、多態(tài)、模板、流輸入/輸出、異常處理、文件處理、搜索與排序、數(shù)據(jù)結(jié)構(gòu)、標(biāo)準(zhǔn)模板庫等內(nèi)容,本書的同步學(xué)習(xí)網(wǎng)站上還包含了更多的擴(kuò)展內(nèi)容。全書以“活代碼”方式詳細(xì)分析了每個(gè)知識(shí)要點(diǎn),是初學(xué)者和中高級(jí)程序員學(xué)習(xí)C++編程的理想用書。

C++大學(xué)教程-(第八版)-(英文版) 目錄

contents
chapter 1 introduction to computers and c++
1.1 introduction
1.2 computers: hardware and software
1.3 data hierarchy
1.4 computer organization
1.5 machine languages,assembly languages and high-level languages
1.6 introduction to object technology
1.7 operating systems
1.8 programming languages
1.9 c++ and a typical c++ development environment
1.10 test-driving a c++ application
1.11 web 2.0: going social
1.12 software technologies
1.13 future of c++: tr1,the new c++ standard and the open source boost libraries
1.14 keeping up-to-date with information technologies
1.15 wrap-up

chapter 2 introduction to c++ programming
2.1 introduction
2.2 first program in c++: printing a line of text
2.3 modifying our first c++ program
2.4 another c++ program: adding integers
2.5 memory concepts
2.6 arithmetic
2.7 decision making: equality and relational operators
2.8 wrap-up

chapter 3 introduction to classes,objects and strings
3.1 introduction
3.2 defining a class with a member function
3.3 defining a member function with a parameter
3.4 data members,set functions and get functions
3.5 initializing objects with constructors
3.6 placing a class in a separate file for reusability
3.7 separating interface from implementation
3.8 validating data with set functions
3.9 wrap-up

chapter 4 control statements: part 1
4.1 introduction
4.2 algorithms
4.3 pseudocode
4.4 control structures
4.5 if selection statement
4.6 if…else double-selection statement
4.7 while repetition statement
4.8 formulating algorithms: counter-controlled repetition
4.9 formulating algorithms: sentinel-controlled repetition
4.10 formulating algorithms: nested control statements
4.11 assignment operators
4.12 increment and decrement operators
4.13 wrap-up

chapter 5 control statements: part 2
5.1 introduction
5.2 essentials of counter-controlled repetition
5.3 for repetition statement
5.4 examples using the for statement
5.5 do…while repetition statement
5.6 switch multiple-selection statement
5.7 break and continue statements
5.8 logical operators
5.9 confusing the equality (==) and assignment (=) operators
5.10 structured programming summary
5.11 wrap-up

chapter 6 functions and an introduction to recursion
6.1 introduction
6.2 program components in c++
6.3 math library functions
6.4 function definitions with multiple parameters
6.5 function prototypes and argument coercion
6.6 c++ standard library headers
6.7 case study: random number generation
6.8 case study: game of chance; introducing enum
6.9 storage classes
6.10 scope rules
6.11 function call stack and activation records
6.12 functions with empty parameter lists
6.13 inline functions
6.14 references and reference parameters
6.15 default arguments
6.16 unary scope resolution operator
6.17 function overloading
6.18 function templates
6.19 recursion
6.20 example using recursion: fibonacci series
6.21 recursion vs. iteration
6.22 wrap-up

chapter 7 arrays and vectors
7.1 introduction
7.2 arrays
7.3 declaring arrays
7.4 examples using arrays
7.5 passing arrays to functions
7.6 case study: class gradebook using an array to store grades
7.7 searching arrays with linear search
7.8 sorting arrays with insertion sort
7.9 multidimensional arrays
7.10 case study: class gradebook using a two-dimensional array
7.11introduction to c++ standard library class template vector
7.12 wrap-up

chapter 8 pointers
8.1 introduction
8.2 pointer variable declarations and initialization
8.3 pointer operators
8.4 pass-by-reference with pointers
8.5 using const with pointers
8.6 selection sort using pass-by-reference
8.7 sizeof operator
8.8 pointer expressions and pointer arithmetic
8.9 relationship between pointers and arrays
8.10 pointer-based string processing
8.11 arrays of pointers
8.12 function pointers
8.13 wrap-up

chapter 9 classes: a deeper look, part 1
9.1 introduction
9.2 time class case study
9.3 class scope and accessing class members
9.4 separating interface from implementation
9.5 access functions and utility functions
9.6 time class case study: constructors with default arguments
9.7 destructors
9.8 when construct
展開全部

C++大學(xué)教程-(第八版)-(英文版) 作者簡(jiǎn)介

Paul Deitel和Harvey Deitel是全球暢銷的編程語言教材和專業(yè)圖書作家,“How to Program”系列是其*負(fù)盛名的一套計(jì)算機(jī)編程教材,已經(jīng)銷售近40年,并被翻譯成中文在內(nèi)的十幾種語言。他們成立的Deitel & Associates公司是一家國際知名的企業(yè)培訓(xùn)和寫作公司,專門進(jìn)行計(jì)算機(jī)編程語言、對(duì)象技術(shù)、移動(dòng)應(yīng)用開發(fā)及Internet和Web軟件技術(shù)方面的培訓(xùn)和寫作,出版了一流的編程專業(yè)的大學(xué)教材、 專業(yè)圖書以及LiveLessons視頻課程。

商品評(píng)論(0條)
暫無評(píng)論……
書友推薦
本類暢銷
編輯推薦
返回頂部
中圖網(wǎng)
在線客服
主站蜘蛛池模板: 成都办公室装修-办公室设计-写字楼装修设计-厂房装修-四川和信建筑装饰工程有限公司 | 圆形振动筛_圆筛_旋振筛_三次元振动筛-河南新乡德诚生产厂家 | 上海乾拓贸易有限公司-日本SMC电磁阀_德国FESTO电磁阀_德国FESTO气缸 | 百方网-百方电气网,电工电气行业专业的B2B电子商务平台 | 搅拌磨|搅拌球磨机|循环磨|循环球磨机-无锡市少宏粉体科技有限公司 | 断桥铝破碎机_铝合金破碎机_废铁金属破碎机-河南鑫世昌机械制造有限公司 | 安平县鑫川金属丝网制品有限公司,防风抑尘网,单峰防风抑尘,不锈钢防风抑尘网,铝板防风抑尘网,镀铝锌防风抑尘网 | 产业规划_产业园区规划-产业投资选址及规划招商托管一体化服务商-中机院产业园区规划网 | 河南卓美创业科技有限公司-河南卓美防雷公司-防雷接地-防雷工程-重庆避雷针-避雷器-防雷检测-避雷带-避雷针-避雷塔、机房防雷、古建筑防雷等-山西防雷公司 | 上海道勤塑化有限公司| 硬齿面减速机_厂家-山东安吉富传动设备股份有限公司 | 时代北利离心机,实验室离心机,医用离心机,低速离心机DT5-2,美国SKC采样泵-上海京工实业有限公司 工业电炉,台车式电炉_厂家-淄博申华工业电炉有限公司 | 隔爆型防爆端子分线箱_防爆空气开关箱|依客思| 手持气象站_便携式气象站_农业气象站_负氧离子监测站-山东万象环境 | 蜘蛛车-高空作业平台-升降机-高空作业车租赁-臂式伸缩臂叉装车-登高车出租厂家 - 普雷斯特机械设备(北京)有限公司 | 交通信号灯生产厂家_红绿灯厂家_电子警察监控杆_标志杆厂家-沃霖电子科技 | 塑胶地板-商用PVC地板-pvc地板革-安耐宝pvc塑胶地板厂家 | 三防漆–水性三防漆–水性浸渍漆–贝塔三防漆厂家 | pbootcms网站模板|织梦模板|网站源码|jquery建站特效-html5模板网 | 干粉砂浆设备_干混砂浆生产线_腻子粉加工设备_石膏抹灰砂浆生产成套设备厂家_干粉混合设备_砂子烘干机--郑州铭将机械设备有限公司 | 澳威全屋定制官网|极简衣柜十大品牌|衣柜加盟代理|全屋定制招商 百度爱采购运营研究社社群-店铺托管-爱采购代运营-良言多米网络公司 | 旅游规划_旅游策划_乡村旅游规划_景区规划设计_旅游规划设计公司-北京绿道联合旅游规划设计有限公司 | 间苯二酚,间苯二酚厂家-淄博双和化工 | 液晶拼接屏厂家_拼接屏品牌_拼接屏价格_监控大屏—北京维康 | 电动垃圾车,垃圾清运车-江苏速利达机车有限公司 | lcd条形屏-液晶长条屏-户外广告屏-条形智能显示屏-深圳市条形智能电子有限公司 | 房在线-免费房产管理系统软件-二手房中介房屋房源管理系统软件 | 首页-浙江橙树网络技术有限公司 石磨面粉机|石磨面粉机械|石磨面粉机组|石磨面粉成套设备-河南成立粮油机械有限公司 | 广东健伦体育发展有限公司-体育工程配套及销售运动器材的体育用品服务商 | 流变仪-热分析联用仪-热膨胀仪厂家-耐驰科学仪器商贸 | 酒瓶_酒杯_玻璃瓶生产厂家_徐州明政玻璃制品有限公司 | 山东聚盛新型材料有限公司-纳米防腐隔热彩铝板和纳米防腐隔热板以及钛锡板、PVDF氟膜板供应商 | 石家庄网站建设|石家庄网站制作|石家庄小程序开发|石家庄微信开发|网站建设公司|网站制作公司|微信小程序开发|手机APP开发|软件开发 | 超声骨密度仪,双能X射线骨密度仪【起草单位】,骨密度检测仪厂家 - 品源医疗(江苏)有限公司 | 懂研帝_专业SCI论文润色机构_SCI投稿发表服务公司 | 上海风淋室_上海风淋室厂家_上海风淋室价格_上海伯淋 | 依维柯自动挡房车,自行式国产改装房车,小型房车价格,中国十大房车品牌_南京拓锐斯特房车 - 南京拓锐斯特房车 | IWIS链条代理-ALPS耦合透镜-硅烷预处理剂-上海顶楚电子有限公司 lcd条形屏-液晶长条屏-户外广告屏-条形智能显示屏-深圳市条形智能电子有限公司 | 成都离婚律师|成都结婚律师|成都离婚财产分割律师|成都律师-成都离婚律师网 | POS机办理_个人POS机免费领取 - 银联POS机申请首页 | 专注氟塑料泵_衬氟泵_磁力泵_卧龙泵阀_化工泵专业品牌 - 梭川泵阀 |