Y Hacker News Books
A Tour of C++

#1216 of 2,654 all-time

A Tour of C++

Bjarne Stroustrup

6 people recommended it in 3 threads, 2014–2020.

What people on Hacker News said

aurelian15
I read this book after having programmed C++ with the common "C++ is C with classes" attitude for a while, and it really made me change the way I looked at this language.

on HN, 2015

aurelian15
It was the book that made me realize how beautiful the RAII idiom is, that the STL was clearly not hacked together by a bunch of crazy monkeys, that you rarely need raw pointers in your code and that -- in contrast to popular belief -- you seldom need to care about memory management.

on HN, 2015

tdicola
Stroustrup's "A Tour of C++" is a great overview of C++11 and modern C++.

on HN, 2014

tdicola
It's not very long and worth a read to see what's new in the C++ world.

on HN, 2014

sanderjd
I've also found it to be a great resource for understanding a lot of the design decisions in Rust (if you're into that sort of thing), which are often informed by similar decisions in recent versions of C++ that "Tour of C++" discusses in detail.

on HN, 2014

Where it comes up