码迷,mamicode.com
首页 > 编程语言 > 详细

C++学习书籍推荐《C++ Primer 第五版 (英文)》下载

时间:2019-02-16 20:38:37      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:dea   c++11   实践   学习   程序员   defining   .com   arrays   加拿大   

技术图片

百度云及其他网盘下载地址:点我

编辑推荐

《C++ Primer(英文版)(第5版)》是全球最畅销的C++图书。这本久负盛名的C++经典教程,时隔八年之久,终迎来的重大升级。除令全球无数程序员从中受益,甚至为之迷醉的——C++大师Stanley B. Lippman的丰富实践经验,C++标准委员会原负责人Josée Lajoie对C++标准的深入理解,以及C++先驱Barbara E.Moo在C++教学方面的真知灼见外,更是基于全新的C++11标准进行了全面而彻底的内容更新。非常难能可贵的是,书中所有示例均全部采用C++11标准改写,这在经典升级版中极其罕见——充分体现了C++语言的重大进展极其全面实践。书中丰富的教学辅助内容、醒目的知识点提示,以及精心组织的编程示范,让《C++ Primer英文版(第5版)》在C++领域的权威地位更加不可动摇。无论是初学者入门,或是中、高级程序员提升,《C++ Primer英文版(第5版)》均为不容置疑的首选。

作者简介

作者:(美国)李普曼 (Stanley B.Lippman) (美国)拉乔伊 (Josee Lajoie) (美国)默 (Barbara E.Moo)

李普曼 (Stanley B.Lippman),目前是微软公司 Visual C++ 团队的架构师。他从1984年开始在贝尔实验室与C++的设计者Bjarne Stroustrup一起从事C++的设计与开发。他在迪士尼和梦工厂从事动画制作,还担任过JPL的高级顾问。
拉乔伊 (Josee Lajoie),曾经是IBM加拿大研究中心C/C++编译器开发团队的成员,在ISO C++标准委员会工作了7年,担任过ISO核心语言工作组的主席和C++ Report杂志的专栏作家。
默 (Barbara E.Moo),是拥有25年软件经验的独立咨询顾问。在AT&T,她与Stroustrup、Lippman一起管理过复杂的C++开发项目。

目录

Chapter 1 Getting Started 
1.1 Writing a Simple C++ Program 
1.1.1 Compiling and Executing Our Program 
1.2 A First Look at Input/Output 
1.3 A Word about Comments 
1.4 Flow of Control 
1.4.1 The wlhile Statement 
1.4.2 The for Statement 
1.4.3 Reading an Unknown Number of Inputs 
1.4.4 The if Statement 
1.5 Introducing Classes 
1.5.1 The sales item Class 
1.5.2 A First Look at Member Functions 
1.6 The Bookstore Program 
Chapter Summary 
Defined Terms 
Part Ⅰ The Basics 
Chapter 2 Variables and Basic Types 
2.1 Primitive Built-in Types 
2.1.1 Arithmetic Types 
2.1.2 Type Conversions 
2.1.3 Literals 
2.2 Variables 
2.2.1 Variable Definitions 
2.2.2 Variable Declarations and Definitions 
2.2.3 Identifiers 
2.2.4 Scope of a Name 
2.3 Compound Types 
2.3.1 References 
2.3.2 Pointers 
2.3.3 Understanding Compound Type Declarations 
2.4 const Qualifier 
2.4.1 References to const 
2.4.2 Pointers and const 
2.4.3 Top-Level const 
2.4.4 constexpr and Constant Expressions 
2.5 Dealing with Types 
2.5.1 Type Aliases 
2.5.2 The auto Type Specifier 
2.5.3 The decltype Type Specifier 
2.6 Defining Our Own Data Structures 
2.6.1 Defining the Sales_data Type 
2,6.2 Using the Sales_data Class 
2.6.3 Writing Our Own Header Files 
Chapter Summary 
Defined Terms 
Chapter 3 Strings, Vectors, and Arrays 
3.1 Namespace us ing Declarations 
3.2 Library string Type 
3.2.1 Defining and Initializing strings 
3.2.2 Operations on strings 
3.2.3 Dealing with the Characters in a string 
3.3 Library vector Type 
3.3.1 Defining and Initializing vectors 
3.3.2 Adding Elements to a vector 
3.3.3 Other vector Operations 
3.4 Introducing Iterators 
3.4.1 Using Iterators 
3.4.2 Iterator Arithmetic 
3.5 Arrays 
3.5.1 Defining and Initializing Built-in Arrays 
3.5.2 Accessing the Elements of an Array 
3.5.3 Pointers and Arrays 
3.5.4 C-Style Character Strings 
3.5.5 Interfacing to Older Code 
3.6 Multidimensional Arrays 
Chapter Summary 
Defined Terms 
Chapter 4 Expressions 
4.1 Fundamentals 
4.1.1 Basic Concepts 
4.1.2 Precedence and Associativity 
4.1.3 Order of Evaluation 
4.2 Arithmetic Operators 
4.3 Logical and Relational Operators 
4.4 Assignment Operators 
4.5 Increment and Decrement Operators 
4.6 The Member Access Operators 
4.7 The Conditional Operator 
4.8 The Bitwise Operators 
4.9 The sizeof Operator 
4.10 Comma Operator 
4.11 Type Conversions 
4.11.1 The Arithmetic Conversions 
4.11.2 Other Implicit Conversions 
4.11.3 Explicit Conversions 
4.12 Operator Precedence Table 
Chapter Summary 
Defined Terms 
Chapter 5 Statements 
5.1 Simple Statements 
5.2 Statement Scope 
5.3 Conditional Statements 
5.3.1 The if Statement 
5.3.2 The switch Statement 
5.4 Iterative Statements 
5.4.1 The while Statement 
5.4.2 Traditional for Statement 
5.4.3 Range for Statement 
5.4.4 The do while Statement 
5.5 Jump Statements 
5.5.1 The break Statement 
5.5.2 The continue Statement 
5.5.3 The goto Statement 
5.6 try Blocks and Exception Handling 
5.6.1 A throw Expression 
5.6.2 The try Block 
5.6.3 Standard Exceptions 
Chapter Summary 
Defined Terms 
Chapter 6 Functions 
6.1 Function Basics 
6.1.1 Local Objects 
6.1.2 Function Declarations 
6.1.3 Separate Compilation 
6.2 Argument Passing 
6.2.1 Passing Arguments by Value 
6.2.2 Passing Arguments by Reference 
6.2.3 const Parameters and Arguments 
6.2.4 Array Parameters 
…… 
Part Ⅱ The C++ Library 
Part Ⅲ Tools for Class Authors 
Part Ⅳ Advanced Topics 
Index

百度云及其他网盘下载地址:点我

C++学习书籍推荐《C++ Primer 第五版 (英文)》下载

标签:dea   c++11   实践   学习   程序员   defining   .com   arrays   加拿大   

原文地址:https://www.cnblogs.com/awesome-share/p/10046769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!