What books does Bjarne Stroustrup suggest to master C++?
QUESTION :
What books does Bjarne Stroustrup suggest to master C++?
ANSWER:
A Tour of C++ is a quick (about 180 pages) tutorial overview of all of standard C++ (language and standard library) at a moderately high level for people who already know C++ or at least are experienced programmers.
The C++ Programming Language (Fourth Edition) aka TC++PL4 is a completely rewritten and re-organized version of TC++PL3. It describes the C++11 revision of ISO C++. In particular, TC++PL4 reflects the massive increased of the standard library and the support for concurrency.
TC++PL4 aims at completeness in is description of the C++ language features, standard library components, and the programming and design techniques they support. See The Preface.
The exercises have been extended, but are placed on the web to save trees and allow for expansion.
The discussion for software engineering issues found in TC++PL3 has been cut for lack of space. I still recommend the discussion in TC++PL3.
Programming -- Principles and Practice Using C++. is an introduction to programming for people who have never programmed before. It will also be useful for people who have programmed a bit and want to improve their style and technique. It is designed for classroom use, but written with an eye on self study. Drafts have been used as the basis for first programming classes at Texas A&M University (and elsewhere) for several years now. It is unrelated to the editions of The C++ Programming language.
-- By Bjarne Stroustrup
Excerpt from :https://www.quora.com/What-books-does-Bjarne-Stroustrup-suggest-to-master-C++
What books does Bjarne Stroustrup suggest to master C++?的更多相关文章
- C++之父Bjarne Stroustrup提供的关于异常处理的建议
		节选自<The C++ Programming Language> ——C++之父Bjarne Stroustrup 1. Don’t use exceptions wh ... 
- Bjarne Stroustrup announces C++ Core Guidelines
		This morning in his opening keynote at CppCon, Bjarne Stroustrup announced the C++ Core Guidelines ( ... 
- 向C++之父Bjarne Stroustrup致敬
		2013-04-25 21:30 (分类:社会人生) 非常好的文章 C ++ 的 背 影 ——C++之父Bjarne Strou ... 
- Bjarne Stroustrup对C++程序员的忠告
		转自:http://blog.csdn.net/adm_qxx/archive/2007/05/20/1617488.aspx 第1章 致读者 [1] 在编写程序时,你是在为你针对某个问题的解决方 ... 
- Bjarne Stroustrup语录2
		一.致读者 1. 在编程序时,你是在为你针对某个问题的解决方案中的思想建立起一种具体表示.让程序的结构尽可能地直接反映这些思想: ★.如果你能把“它”看成一个独立的概念,就把它做成一个类. ... 
- Bjarne Stroustrup 语录1
		1. 请谈谈C++书. 没有,也不可能有一本书对于所有人来说都是最好的.不过对于那些真正的程序员来说,如果他喜欢从“经典风格”的书中间学习一些新的概念和技术,我推荐我的The C++ Program ... 
- The C++ Programming Language - Bjarne Stroustrup
		Preface Part 1: Introduction 1.1 The Structure of This Book 1.1.1 Introduction 1.1.2 Basic Facilitie ... 
- Bjarne Stroustrup语录2(一些C++使用注意点)
		一.致读者 1. 在编程序时,你是在为你针对某个问题的解决方案中的思想建立起一种具体表示.让程序的结构尽可能地直接反映这些思想: ★.如果你能把“它”看成一个独立的概念,就把它做成一个类. ... 
- Contributing to the C++ Core Guidelines
		Contributing to the C++ Core Guidelines "Within C++ is a smaller, simpler, safer language strug ... 
随机推荐
- 从客户端中检测到有潜在危险的Request.Form值的解决方法
			描述:从客户端中检测到有潜在危险的Request.Form值的解决方法asp.net 2.0 通常解决办法将.aspx文件中的page项添加ValidateRequest="false&qu ... 
- AFNetworking框架使用
			本文是由 iOS Tutorial 小组成员 Scott Sherwood撰写,他是一个基于位置动态加载(Dynamically Loaded)的软件公司(专业的混合定位)的共同创办人. 网络 — 你 ... 
- C#画线源码
			画线 private void Form1_Load(object sender, EventArgs e) { this.Paint += new PaintEventHandler(Form1_P ... 
- bzoj 2143: 飞飞侠
			#include<cstdio> #include<iostream> #include<queue> #define inf 1000000000 #define ... 
- js字符转换成整型 parseInt()函数规程Number()函数
			今天在做一个js加法的时候,忘记将字符转换成整型,导致将加号认为是连接符, 在运算前要先对字符井行类型转换,使用parseInt()函数 使用Number()将字符转换成int型效果更好 
- MonoRail MVC应用(2)-构建多层结构的应用程序
			习惯了分层结构的.NET开发了,当然也是分层有优势,所以在使用MonoRail进行网站构建时,首先考虑到的问题就是MonoRail如何应对分层的结构.问题1:MonoRail在WEB层没有根目录,必须 ... 
- MyEclipse8.5集成Tomcat7
			我最近需要在MyEclipse中使用Tomcat7,已经在Servers中配置了本地的Tomcat路径,之后发布项,在MyEclipse启动Tomcat服务则出现如下错误提示: Exception i ... 
- Cygwin下载,安装教程
			Cygwin是一个用于在Windows上模拟Linux环境的软件,由于工作上的需要,我要使用它,至于为什么用它,我在这里不做过多的解释,本文的目的,旨在于解决Cygwin安装上的问题. 原始的安装Cy ... 
- git——学习笔记(三)分支管理
			一.创建.合并分支 每次提交,git都往后走一格,串成一跳时间线,head指向的是分支,分支指向提交.master是主分支,dev是另一条分支,分支就像指针一样,合并.删除分支时,修改的都是指针,工作 ... 
- Asp.Net应用运行原理
			一.运行原理图 二.对于HttpModule和HttpHandler的概念可能还不是很清楚,请先看Asp.Net应用生命周期.RAR 或者 Asp.Net深入解析 第四章,流程图太大无法粘贴 三.传智 ... 
