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

歡迎光臨中圖網(wǎng) 請(qǐng) | 注冊(cè)
> >>
C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版)

包郵 C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版)

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

C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版) 版權(quán)信息

C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版) 本書特色

  由劉嘉敏、馬廣焜、常燕、朱世鐵編著的《c++ 面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程(第2版普通高等院校十三五規(guī)劃教材)》從面向?qū)ο蟪绦蛟O(shè)計(jì)的特點(diǎn)出發(fā),分章節(jié)循序漸進(jìn)地介紹了面向?qū)ο蟮南嚓P(guān)概念及運(yùn)用c ++實(shí)現(xiàn)的過程,并輔以大量程序清單。同時(shí)書中在各個(gè)章節(jié)起始處明確了章節(jié)學(xué)習(xí)目標(biāo),且在全書中重要知識(shí)點(diǎn)處均有提示,各章末尾有本章出現(xiàn)的重要的詞匯注解和本章相應(yīng)的練習(xí)題,有助于讀者理解書中內(nèi)容,幫助讀者掌握面向?qū)ο缶幊谭椒āH珪卜?章, 具體內(nèi)容包括:導(dǎo)論、基本工具、類和對(duì)象(1)、類和對(duì)象(2)、運(yùn)算符重載、繼承、多態(tài)性和虛函數(shù)、模板。

C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版) 內(nèi)容簡(jiǎn)介

本書從面向?qū)ο蟪绦蛟O(shè)計(jì)的特點(diǎn)出發(fā),分章節(jié)循序漸進(jìn)地介紹了面向?qū)ο蟮南嚓P(guān)概念及運(yùn)用C++實(shí)現(xiàn)的過程,并輔以大量程序清單。同時(shí)書中在各個(gè)章節(jié)起始處明確了章節(jié)學(xué)習(xí)目標(biāo),且在全書中重要知識(shí)點(diǎn)處均有提示,各章末尾有本章出現(xiàn)的重要的詞匯注解和本章相應(yīng)的練習(xí)題,有助于讀者理解書中內(nèi)容,幫助讀者掌握面向?qū)ο缶幊谭椒ā? 全書共分8章,具體內(nèi)容包括:導(dǎo)論、基本工具、類和對(duì)象(1)、類和對(duì)象(2)、運(yùn)算符重載、繼承、多態(tài)性和虛函數(shù)、模板。

C++面向?qū)ο蟪绦蛟O(shè)計(jì)雙語教程-(第2版) 目錄

chapter 1  introduction 1.1  overview of programming  1.1.1  what is programming?  1.1.2  how do we write a program? 1.2  the evolution of programming language  1.2.1  assembly and machine languages  1.2.2  early languages  1.2.3  later-generation languages  1.2.4  modem languages 1.3  programming methodologies  1.3.1  structured programming  1.3.2  object-oriented programming 1.4  object-oriented programming 1.5  c + + programming language  1.5.1  history of candc++  1.5.2  learning c++ word tips exerciseschapter 2  basic facilities 2.1  c++ program structure 2.2  input / output streams 2.3  constant 2.4  functions  2.4.1  function declarations  2.4.2  function definitions  2.4.3  default arguments  2.4.4  inline functions  2.4.5  overloading functions 2.5  references  2.5.1  reference definition  2.5.2  reference variables as parameters  2.5.3  references as value-returning  2.5.4  references as left-hand values 2.6  namespaces word tips exerciseschapter 3  classes and objects (ⅰ) 3.1  structures  3.1.1  defining a structure  3.1.2  accessing members of structures  3.1.3  structures with member functions 3.2  data abstraction and classes  3.2.1   data abstraction  3.2.2  defining classes  3.2.3  defining objects  3.2.4  accessing member functions  3.2.5  in-class member function definition  3.2.6  file structure of an abstract data type 3.3  information hiding 3.4  access control 3.5  constructors  3.5.1  overloading constructors  3.5.2  constructors with default parameters 3.6  destructors  3.6.1   definition of destructors  3.6.2  order of constructor and destructor calls 3.7  encapsulation 3.8  case study: a gradebook class word tips exercises chapter 4  classes and objects (ⅱ) 4.1  constant member functions and constant  objects    4.2  this pointers    4.3  static members     4.3.1  static data members     4.3.2  static member functions    4.4  free store    4.5  objects as members of classes    4.6  copy members     4.6.1  definition of copy constructors     4.6.2  shallow copy and deep copy    4.7  arrays of objects     4.7.1  initialize an array of objects by using a default constructor     4.7.2  initialize an array of objects by using constructors with parameters    4.8  friends     4.8.1  friend functions     4.8.2  friend classes 4.9  case study : examples of used-defined types     4.9.1  a better date class     4.9.2  a gradebook class with objects of the student class word tips exerciseschapter 5  operator overloading 5.1  why operator overloading is need 5.2  operator functions  5.2.1   overloaded operators  5.2.2  operator functions 5.3  binary and unary operators  5.3.1  overloading binary operators  5.3.2  overloading unary operators 5.4  overloading combinatorial operators 5.5  mixed arithmetic of user-defined types 5.6  type conversion of user-defined types 5.7  examples of operator overloading  5.7.1   a complex number class  5.7.2  a string class word tips exerciseschapter 6  inheritance 6.1  class hierarchies 6.2  derived classes  6.2.1  declaration of derived classes  6.2.2  structure of derived classes 6.3  constructors and destructors of derived classes  6.3.1  constructors of derived classes  6.3.2  destructors of derived classes  6.3.3  order of calling class objects  6.3.4  inheritance and composition 6.4  member functions of derived classes 6.5  access control  6.5.1  access control in classes  6.5.2  access to base classes 6.6  multiple inheritance  6.6.1  declaration of multiple inheritance  6.6.2  constructors of multiple inheritance 6.7  virtual inheritance  6.7.1  multiple inheritance ambiguities  6.7.2  trying to solve inheritance ambiguities  6.7.3  virtual base classes  6.7.4  constructing objects of multiple inheritance  word tips  exerciseschapter 7  polymorphism and virtual functions  7.1  polymorphism   7.1.1  concept of polymorphism   7.1.2  binding  7.2  virtual functions   7.2.1  definition of vitual functions   7.2.2  extensibility   7.2.3  principle of virtual functions   7.2.4  virtual destructors  7.2.5  function overloading and function overriding 7.3  abstract base classes 7.4  case study: a mini system word tips exerciseschapter 8  templates 8.1  template mechanism 8.2  function templates and template functions  8.2.1  why we use function templates?  8.2.2  definition of function templates  8.2.3  function template instantiation  8.2.4  function template with different parameter types  8.2.5  function template overloading 8.3  class templates and template classes  8.3.1  definition of class templates  8.3.2  class template instantiation 8.4  non-type parameters for templates 8.5  derivation and class templates 8.6  case study : an example of the vector class template word tips exercisesreferences
展開全部
商品評(píng)論(0條)
暫無評(píng)論……
書友推薦
本類暢銷
編輯推薦
返回頂部
中圖網(wǎng)
在線客服
主站蜘蛛池模板: 广域铭岛Geega(际嘉)工业互联网平台-以数字科技引领行业跃迁 | 北京印刷厂_北京印刷_北京印刷公司_北京印刷厂家_北京东爵盛世印刷有限公司 | 杭州公司变更法人-代理记账收费价格-公司注销代办_杭州福道财务管理咨询有限公司 | 滚塑PE壳体-PE塑料浮球-警示PE浮筒-宁波君益塑业有限公司 | 回收二手冲床_金丰旧冲床回收_协易冲床回收 - 大鑫机械设备 | 【法利莱住人集装箱厂家】—活动集装箱房,集装箱租赁_大品牌,更放心 | 交流伺服电机|直流伺服|伺服驱动器|伺服电机-深圳市华科星电气有限公司 | 厂房出售_厂房仓库出租_写字楼招租_土地出售-中苣招商网-中苣招商网 | 浙江宝泉阀门有限公司| 派克防爆伺服电机品牌|国产防爆伺服电机|高低温伺服电机|杭州摩森机电科技有限公司 | 广州食堂承包_广州团餐配送_广州堂食餐饮服务公司 - 旺记餐饮 | 渣土车电机,太阳能跟踪器电机,蜗轮蜗杆减速电机厂家-淄博传强电机 | 破碎机锤头_耐磨锤头_合金锤头-鼎成机械一站式耐磨铸件定制服务 微型驱动系统解决方案-深圳市兆威机电股份有限公司 | 吉林污水处理公司,长春工业污水处理设备,净水设备-长春易洁环保科技有限公司 | 东莞市踏板石餐饮管理有限公司_正宗桂林米粉_正宗桂林米粉加盟_桂林米粉加盟费-东莞市棒子桂林米粉 | 顶空进样器-吹扫捕集仪-热脱附仪-二次热解吸仪-北京华盛谱信仪器 | 食安观察网| 烟台游艇培训,威海游艇培训-烟台市邮轮游艇行业协会 | 上海宿田自动化设备有限公司-双面/平面/单面贴标机 | 钢骨架轻型板_膨石轻型板_钢骨架轻型板价格_恒道新材料 | 悬浮拼装地板_幼儿园_篮球场_悬浮拼接地板-山东悬浮拼装地板厂家 | 无刷电机_直流无刷电机_行星减速机-佛山市藤尺机电设备有限公司 无菌检查集菌仪,微生物限度仪器-苏州长留仪器百科 | 手术室净化厂家-成都做医院净化工程的公司-四川华锐-15年特殊科室建设经验 | 水上浮桥-游艇码头-浮动码头-游船码头-码瑞纳游艇码头工程 | 产业规划_产业园区规划-产业投资选址及规划招商托管一体化服务商-中机院产业园区规划网 | 协议书_协议合同格式模板范本大全| 耐高温电缆厂家-远洋高温电缆| 西门子气候补偿器,锅炉气候补偿器-陕西沃信机电工程有限公司 | 无锡网站建设_企业网站定制-网站制作公司-阿凡达网络 | 板式换热器_板式换热器价格_管式换热器厂家-青岛康景辉 | 东莞动力锂电池保护板_BMS智能软件保护板_锂电池主动均衡保护板-东莞市倡芯电子科技有限公司 | 定硫仪,量热仪,工业分析仪,马弗炉,煤炭化验设备厂家,煤质化验仪器,焦炭化验设备鹤壁大德煤质工业分析仪,氟氯测定仪 | 行星齿轮减速机,减速机厂家,山东减速机-淄博兴江机械制造 | 深圳货架厂_仓库货架公司_重型仓储货架_线棒货架批发-深圳市诺普泰仓储设备有限公司 | 工作心得_读书心得_学习心得_找心得体会范文就上学道文库 | 上海律师咨询_上海法律在线咨询免费_找对口律师上策法网-策法网 广东高华家具-公寓床|学生宿舍双层铁床厂家【质保十年】 | 胶辊硫化罐_胶鞋硫化罐_硫化罐厂家-山东鑫泰鑫智能装备有限公司 意大利Frascold/富士豪压缩机_富士豪半封闭压缩机_富士豪活塞压缩机_富士豪螺杆压缩机 | 广东燎了网络科技有限公司官网-网站建设-珠海网络推广-高端营销型外贸网站建设-珠海专业h5建站公司「了了网」 | 制丸机,小型中药制丸机,全自动制丸机价格-甘肃恒跃制药设备有限公司 | 闭端端子|弹簧螺式接线头|防水接线头|插线式接线头|端子台|电源线扣+护线套|印刷电路板型端子台|金笔电子代理商-上海拓胜电气有限公司 | 数控车床-立式加工中心-多功能机床-小型车床-山东临沂金星机床有限公司 |