Skip to content

Latest commit

 

History

History
98 lines (61 loc) · 5.09 KB

CppResources.md

File metadata and controls

98 lines (61 loc) · 5.09 KB

C++ Resources

A collection of resources useful for learning C++

Hands down the best C++ reference next to the standard itself

Answers a lot of very specific questions about the C++ language.

One of the best C++ tutorials out there.
Teaches modern C++ techniques right from the start.

A decent C++ tutorial from a website with a number of good articles.
However, some of their advice is outdated or flawed,
so take some of the advice with a grain of salt.
The newer articles about C++11 features are very good though.

An excellent guide on how to write good C++ code, with input from Bjarne Stroustrup (creator of C++) and Herb Sutter (world-renowned C++ expert).

There's a version specifically formatted for web browsing if you prefer that to markdown documents.

Bjarne Stroustrup

The musings of C++'s creator.

The musings of C++'s creator about C++11.

The musings of C++'s creator about C++ style.

A talk given by Bjarne Stroustrup in 2012 discussing C++11 and good C++ style.

A series of blogs by a very well informed individual, disecting advanced C++ problems, particularly ones centred around design decisions.

A Wikibook series demonstrating various intermediate C++ patterns and idioms.


Author's Pick

A collection of very specific articles that I find to be particularly englightening.

Specific C++ Features

Design Decisions

Useful Articles

Breaking The Misconceptions

Miscellaneous