首页 > 技术文章 > What books does Bjarne Stroustrup suggest to master C++?

utank 2015-02-03 10:12 原文

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++

 

推荐阅读