中图网(原中国图书网):网上书店,中文字幕在线一区二区三区,尾货特色书店,中文字幕在线一区,30万种特价书低至2折!

歡迎光臨中圖網 請 | 注冊
> >>
C++面向對象程序設計雙語教程-(第2版)

包郵 C++面向對象程序設計雙語教程-(第2版)

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

C++面向對象程序設計雙語教程-(第2版) 版權信息

C++面向對象程序設計雙語教程-(第2版) 本書特色

  由劉嘉敏、馬廣焜、常燕、朱世鐵編著的《c++ 面向對象程序設計雙語教程(第2版普通高等院校十三五規劃教材)》從面向對象程序設計的特點出發,分章節循序漸進地介紹了面向對象的相關概念及運用c ++實現的過程,并輔以大量程序清單。同時書中在各個章節起始處明確了章節學習目標,且在全書中重要知識點處均有提示,各章末尾有本章出現的重要的詞匯注解和本章相應的練習題,有助于讀者理解書中內容,幫助讀者掌握面向對象編程方法。全書共分8章, 具體內容包括:導論、基本工具、類和對象(1)、類和對象(2)、運算符重載、繼承、多態性和虛函數、模板。

C++面向對象程序設計雙語教程-(第2版) 內容簡介

本書從面向對象程序設計的特點出發,分章節循序漸進地介紹了面向對象的相關概念及運用C++實現的過程,并輔以大量程序清單。同時書中在各個章節起始處明確了章節學習目標,且在全書中重要知識點處均有提示,各章末尾有本章出現的重要的詞匯注解和本章相應的練習題,有助于讀者理解書中內容,幫助讀者掌握面向對象編程方法。 全書共分8章,具體內容包括:導論、基本工具、類和對象(1)、類和對象(2)、運算符重載、繼承、多態性和虛函數、模板。

C++面向對象程序設計雙語教程-(第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
展開全部
商品評論(0條)
暫無評論……
書友推薦
本類暢銷
編輯推薦
返回頂部
中圖網
在線客服
主站蜘蛛池模板: 设定时间记录电子秤-自动累计储存电子秤-昆山巨天仪器设备有限公司 | 细沙回收机-尾矿干排脱水筛设备-泥石分离机-建筑垃圾分拣机厂家-青州冠诚重工机械有限公司 | 武汉天安盾电子设备有限公司 - 安盾安检,武汉安检门,武汉安检机,武汉金属探测器,武汉测温安检门,武汉X光行李安检机,武汉防爆罐,武汉车底安全检查,武汉液体探测仪,武汉安检防爆设备 | PCB厂|线路板厂|深圳线路板厂|软硬结合板厂|电路板生产厂家|线路板|深圳电路板厂家|铝基板厂家|深联电路-专业生产PCB研发制造 | 电动不锈钢套筒阀-球面偏置气动钟阀-三通换向阀止回阀-永嘉鸿宇阀门有限公司 | 选矿设备-新型重选设备-金属矿尾矿重选-青州冠诚重工机械有限公司 | 武汉宣传片制作-视频拍摄-企业宣传片公司-武汉红年影视 | 昆明化妆培训-纹绣美甲-美容美牙培训-昆明博澜培训学校 | 我车网|我关心的汽车资讯_汽车图片_汽车生活! | 世界箱包品牌十大排名,女包小众轻奢品牌推荐200元左右,男包十大奢侈品牌排行榜双肩,学生拉杆箱什么品牌好质量好 - Gouwu3.com | 武汉森源蓝天环境科技工程有限公司-为环境污染治理提供协同解决方案 | 塑胶跑道施工-硅pu篮球场施工-塑胶网球场建造-丙烯酸球场材料厂家-奥茵 | pbt头梳丝_牙刷丝_尼龙毛刷丝_PP塑料纤维合成毛丝定制厂_广州明旺 | 机构创新组合设计实验台_液压实验台_气动实训台-戴育教仪厂 | 湖南印刷厂|长沙印刷公司|画册印刷|挂历印刷|台历印刷|杂志印刷-乐成印刷 | 钢绞线万能材料试验机-全自动恒应力两用机-混凝土恒应力压力试验机-北京科达京威科技发展有限公司 | POS机办理_个人pos机免费领取-银联pos机申请首页 | 地脚螺栓_材质_标准-永年县德联地脚螺栓厂家 | 网站优化公司_SEO优化_北京关键词百度快速排名-智恒博网络 | 二维运动混料机,加热型混料机,干粉混料机-南京腾阳干燥设备厂 | 板框压滤机-隔膜压滤机配件生产厂家-陕西华星佳洋装备制造有限公司 | CTP磁天平|小电容测量仪|阴阳极极化_双液系沸点测定仪|dsj电渗实验装置-南京桑力电子设备厂 | 【官网】博莱特空压机,永磁变频空压机,螺杆空压机-欧能优 | 股指期货-期货开户-交易手续费佣金加1分-保证金低-期货公司排名靠前-万利信息开户 | 液压升降货梯_导轨式升降货梯厂家_升降货梯厂家-河南东圣升降设备有限公司 | 超声波流量计_流量标准装置生产厂家 _河南盛天精密测控 | 加气混凝土砌块设备,轻质砖设备,蒸养砖设备,新型墙体设备-河南省杜甫机械制造有限公司 | 刑事律师_深圳著名刑事辩护律师_王平聚【清华博士|刑法教授】 | 污水处理设备,一体化泵站,一体化净水设备-「梦之洁环保设备厂家」 | 江西高职单独招生-江西单招考试-江西高职单招网 | 中图网(原中国图书网):网上书店,尾货特色书店,30万种特价书低至2折! | 一体化隔油提升设备-餐饮油水分离器-餐厨垃圾处理设备-隔油池-盐城金球环保产业发展有限公司 | 干洗加盟网-洗衣店品牌排行-干洗设备价格-干洗连锁加盟指南 | 艺术漆十大品牌_艺术涂料加盟代理_蒙太奇艺术涂料厂家品牌|艺术漆|微水泥|硅藻泥|乳胶漆 | led全彩屏-室内|学校|展厅|p3|户外|会议室|圆柱|p2.5LED显示屏-LED显示屏价格-LED互动地砖屏_蕙宇屏科技 | 油液红外光谱仪-油液监测系统-燃油嗅探仪-上海冉超光电科技有限公司 | 办公室家具_板式办公家具定制厂家-FMARTS福玛仕办公家具 | 钢衬四氟管道_钢衬四氟直管_聚四氟乙烯衬里管件_聚四氟乙烯衬里管道-沧州汇霖管道科技有限公司 | [官网]叛逆孩子管教_戒网瘾学校_全封闭问题青少年素质教育_新起点青少年特训学校 | 顶空进样器-吹扫捕集仪-热脱附仪-二次热解吸仪-北京华盛谱信仪器 | PC构件-PC预制构件-构件设计-建筑预制构件-PC构件厂-锦萧新材料科技(浙江)股份有限公司 |