中图网(原中国图书网):网上书店,中文字幕在线一区二区三区,尾货特色书店,中文字幕在线一区,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條)
暫無評論……
書友推薦
本類暢銷
編輯推薦
返回頂部
中圖網
在線客服
主站蜘蛛池模板: 广东泵阀展|阀门展-广东国际泵管阀展览会 | 高温链条油|高温润滑脂|轴承润滑脂|机器人保养用油|干膜润滑剂-东莞卓越化学 | 玻纤土工格栅_钢塑格栅_PP焊接_单双向塑料土工格栅_复合防裂布厂家_山东大庚工程材料科技有限公司 | 合肥抖音SEO网站优化-网站建设-网络推广营销公司-百度爱采购-安徽企匠科技 | 杭州公司变更法人-代理记账收费价格-公司注销代办_杭州福道财务管理咨询有限公司 | 压力喷雾干燥机,喷雾干燥设备,柱塞隔膜泵-无锡市闻华干燥设备有限公司 | 石家庄律师_石家庄刑事辩护律师_石家庄取保候审-河北万垚律师事务所 | 电子海图系统-电梯检验系统-智慧供热系统开发-商品房预售资金监管系统 | 管形母线,全绝缘铜管母线厂家-山东佰特电气科技有限公司 | 国际线缆连接网 - 连接器_线缆线束加工行业门户网站 | 北京律师事务所_房屋拆迁律师_24小时免费法律咨询_云合专业律师网 | 3D全息投影_地面互动投影_360度立体投影_水幕灯光秀 | 广东银虎 蜂窝块状沸石分子筛-吸附脱硫分子筛-萍乡市捷龙环保科技有限公司 | 澳洁干洗店加盟-洗衣店干洗连锁「澳洁干洗免费一对一贴心服务」 干洗加盟网-洗衣店品牌排行-干洗设备价格-干洗连锁加盟指南 | 光伏支架成型设备-光伏钢边框设备-光伏设备厂家 | 北京四合院出租,北京四合院出售,北京平房买卖 - 顺益兴四合院 | CXB船用变压器-JCZ系列制动器-HH101船用铜质开关-上海永上船舶电器厂 | 煤棒机_增碳剂颗粒机_活性炭颗粒机_木炭粉成型机-巩义市老城振华机械厂 | 艾乐贝拉细胞研究中心 | 国家组织工程种子细胞库华南分库 | 匀胶机旋涂仪-声扫显微镜-工业水浸超声-安赛斯(北京)科技有限公司 | 旋振筛|圆形摇摆筛|直线振动筛|滚筒筛|压榨机|河南天众机械设备有限公司 | 移动厕所租赁|移动卫生间|上海移动厕所租赁-家瑞租赁 | Q361F全焊接球阀,200X减压稳压阀,ZJHP气动单座调节阀-上海戎钛 | 坏男孩影院-提供最新电影_动漫_综艺_电视剧_迅雷免费电影最新观看 | 耐高温硅酸铝板-硅酸铝棉保温施工|亿欧建设工程 | 破碎机锤头_耐磨锤头_合金锤头-鼎成机械一站式耐磨铸件定制服务 微型驱动系统解决方案-深圳市兆威机电股份有限公司 | 电动高压冲洗车_价格-江苏速利达机车有限公司 | 智能化的检漏仪_气密性测试仪_流量测试仪_流阻阻力测试仪_呼吸管快速检漏仪_连接器防水测试仪_车载镜头测试仪_奥图自动化科技 | 吹田功率计-长创耐压测试仪-深圳市新朗普电子科技有限公司 | 利浦顿蒸汽发生器厂家-电蒸汽发生器/燃气蒸汽发生器_湖北利浦顿热能科技有限公司官网 | 1000帧高速摄像机|工业高速相机厂家|科天健光电技术 | 海德莱电力(HYDELEY)-无功补偿元器件生产厂家-二十年专业从事电力电容器 | 柔性输送线|柔性链板|齿形链-上海赫勒输送设备有限公司首页[输送机] | 正压密封性测试仪-静态发色仪-导丝头柔软性测试仪-济南恒品机电技术有限公司 | 上海噪音治理公司-专业隔音降噪公司-中广通环保| 恒温恒湿试验箱_高低温试验箱_恒温恒湿箱-东莞市高天试验设备有限公司 | 安全,主动,被动,柔性,山体滑坡,sns,钢丝绳,边坡,防护网,护栏网,围栏,栏杆,栅栏,厂家 - 护栏网防护网生产厂家 | 地磅-电子地磅维修-电子吊秤-汽车衡-无人值守系统-公路治超-鹰牌衡器 | 气动调节阀,电动调节阀,自力式压力调节阀,切断阀「厂家」-浙江利沃夫自控阀门 | 大通天成企业资质代办_承装修试电力设施许可证_增值电信业务经营许可证_无人机运营合格证_广播电视节目制作许可证 | 冷镦机-多工位冷镦机-高速冷镦机厂家-温州金诺机械设备制造有限公司 | 湖南档案密集架,智能,物证,移动,价格-湖南档案密集架厂家 |