C++ Best Practices
C++ Best Practices
45ish Simple Rules with Specific Action Items for Better C++
About the Book
Note that this book is also available on Amazon in both color and black and white editions if you prefer a printed version.
As a C++ developer and trainer for 20 years, I have learned that there are many common mistakes that C++ developers of all experience levels make. This book distills that experience down into the most important things to address to make your code faster, easier to maintain, and more portable.
Most sections have one or more exercises that help you apply what is discussed in a practical way in the code you are currently working on
This book is intentionally concise! Expect short sections for each item! I use as few words as possible to get across the point and get you applying what you learned to your code.
If you follow me and watch all of my talks this book will present little new information to you. Why should you buy it then? Because I've consolidated the most important items and given you exercises to apply the rules in your code.
Packages
The Book
English
PDF
EPUB
MOBI
WEB
C++ Best Practices Team Edition (5 copies)
You asked for it, so here's a team package deal! You get 5 copies for a reduced price!
English
PDF
EPUB
MOBI
WEB
Reader Testimonials
Adam
I finished it yesterday and loved it. I almost wished it was longer but at the same time, I realize I’m able to remember every actionable piece of advice within. With so many styles and conflicting “best practices” out there, it’s helpful to a have a rigid set of techniques to just default to. I will recommend this book to future interns or other folks I get to work with in the future.
Matthew
Thanks for the great final version of the book. It's clear, concise and the references are a great way to expand on everything.
Table of Contents
- 1 Introduction
- 2 About Best Practices
- 3 Use the Tools: Automated Tests
- 4 Use the Tools: Continuous Builds
- 5 Use the Tools: Compiler Warnings
- 6 Exercise: Use the Tools: Static Analysis
- 7 Use the Tools: Sanitizers
- 8 Slow Down
- 9 C++ Is Not Magic
- 10 C++ Is Not Object-Oriented
- 11 Learn Another Language
-
12
const
Everything That’s Notconstexpr
-
13
constexpr
Everything Known at Compile Time -
14 Prefer
auto
in Many Cases. - 15 Prefer ranged-for Loop Syntax Over Old Loops
-
16 Use
auto
in ranged for loops - 17 Prefer Algorithms Over Loops
- 18 Don’t Be Afraid of Templates
- 19 Don’t Copy and Paste Code
- 20 Follow the Rule of 0
- 21 If You Must Do Manual Resource Management, Follow the Rule of 5
- 22 Don’t Invoke Undefined Behavior
-
23 Never Test for
this
To Benullptr
, It’s UB -
24 Never Test for A Reference To Be
nullptr
, It’s UB -
25 Avoid
default
Inswitch
Statements -
26 Prefer Scoped
enum
s -
27 Prefer
if constexpr
over SFINAE - 28 Constrain Your Template Parameters With Concepts (C++20)
- 29 De-template-ize Your Generic Code
- 30 Use Lippincott Functions
- 31 Be Afraid of Global State
- 32 Make your interfaces hard to use wrong.
- 33 Consider If Using the API Wrong Invokes Undefined Behavior
-
34 Use
[[nodiscard]]
Liberally - 35 Use Stronger Types
- 36 Don’t return raw pointers
- 37 Prefer Stack Over Heap
-
38 No More
new
! - 39 Know Your Containers
-
40 Avoid
std::bind
andstd::function
- 41 Skip C++11
-
42 Don’t Use
initializer_list
For Non-Trivial Types - 43 Use the Tools: Build Generators
- 44 Use the Tools: Package Managers
- 45 Improving Build Time
- 46 Use the Tools: Multiple Compilers
- 47 Fuzzing and Mutating
- 48 Continue Your C++ Education
- 49 Thank You
- 50 Bonus: Understand The Lambda
Authors have earned$10,098,681writing, publishing and selling on Leanpub, earning 80% royalties while saving up to 25 million pounds of CO2 and up to 46,000 trees.
Learn more about writing on Leanpub
The Leanpub 45-day 100% Happiness Guarantee
Within 45 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
See full terms
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers), EPUB (for phones and tablets) and MOBI (for Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them
Top Books
C++20
Rainer GrimmC++20 is the next big C++ standard after C++11. As C++11 did it, C++20 changes the way we program modern C++. This change is, in particular, due to the big four of C++20: ranges, coroutines, concepts, and modules.
The book is almost daily updated. These incremental updates ease my interaction with the proofreaders.
A Guide to Artificial Intelligence in Healthcare
Dr. Bertalan MeskoCan we stay human in the age of A.I.? To go even further, can we grow in humanity, can we shape a more humane, more equitable and sustainable healthcare? This e-book aims to prepare healthcare and medical professionals for the era of human-machine collaboration. Read our guide to understanding, anticipating and controlling artificial intelligence.
Atomic Kotlin
Bruce Eckel and Svetlana IsakovaFor both beginning and experienced programmers! From the author of the multi-award-winning Thinking in C++ and Thinking in Java together with a member of the Kotlin language team comes a book that breaks the concepts into small, easy-to-digest "atoms," along with exercises supported by hints and solutions directly inside IntelliJ IDEA!
Introducing EventStorming
Alberto BrandoliniThe deepest tutorial and explanation about EventStorming, straight from the inventor.
C++ Best Practices
Jason TurnerLevel up your C++, get the tools working for you, eliminate common problems, and move on to more exciting things!
Ansible for DevOps
Jeff GeerlingAnsible is a simple, but powerful, server and configuration management tool. Learn to use Ansible effectively, whether you manage one server—or thousands.
Everyday Rails - RSpecによるRailsテスト入門
Junichi Ito (伊藤淳一), AKIMOTO Toshiharu, 魚振江, and Aaron SumnerRSpecを使ってRailsアプリケーションに信頼性の高いテストを書く実践的なアドバイスを提供します。詳細で丁寧な説明は本書のオリジナルコンテンツです。また、説明には実際に動かせるサンプルアプリケーションも使用します。本書は2017年版にアップデートされ、RSpec 3.6やRails 5.1といった新しい環境に対応しています!さあ、自信をもってテストできるようになりましょう!
The Hundred-Page Machine Learning Book
Andriy BurkovEverything you really need to know in Machine Learning in a hundred pages.
Composing Software
Eric ElliottAll software design is composition: the act of breaking complex problems down into smaller problems and composing those solutions. Most developers have a limited understanding of compositional techniques. It's time for that to change.
R Programming for Data Science
Roger D. PengThis book brings the fundamentals of R programming to you, using the same material developed as part of the industry-leading Johns Hopkins Data Science Specialization. The skills taught in this book will lay the foundation for you to begin your journey learning data science. Printed copies of this book are available through Lulu.
Top Bundles
- #1
Software Architecture for Developers: Volumes 1 & 2 - Technical leadership and communication
2 Books
"Software Architecture for Developers" is a practical and pragmatic guide to modern, lightweight software architecture, specifically aimed at developers. You'll learn:The essence of software architecture.Why the software architecture role should include coding, coaching and collaboration.The things that you really need to think about before... - #2
All the Books of The Medical Futurist
6 Books
We put together the most popular books from The Medical Futurist to provide a clear picture about the major trends shaping the future of medicine and healthcare. Digital health technologies, artificial intelligence, the future of 20 medical specialties, big pharma, data privacy, digital health investments and how technology giants such as Amazon... - #3
Cisco CCNA 200-301 Complet
4 Books
Ce lot comprend les quatre volumes du guide préparation à l'examen de certification Cisco CCNA 200-301. - #4
Linux Administration Complet
4 Books
Ce lot comprend les quatre volumes du Guide Linux Administration :Linux Administration, Volume 1, Administration fondamentale : Guide pratique de préparation aux examens de certification LPIC 1, Linux Essentials, RHCSA et LFCS. Administration fondamentale. Introduction à Linux. Le Shell. Traitement du texte. Arborescence de fichiers. Sécurité... - #5
Learn Git, Bash, and Terraform the Hard Way
3 Books
Learn Git, Bash and Terraform using the Hard Way method.These technologies are essential tools in the DevOps armoury. These books walk you through their features and subtleties in a simple, gradual way that reinforces learning rather than baffling you with theory. - #6
PowerShell
3 Books
Buy every PowerShell book from Adam Bertram at a 20% discount! - #7
Software Architecture and Beautiful APIs
2 Books
There is no better way to learn how to design good APIs than to look at many existing examples, complementing the Software Architecture theory on API design. - #8
9 Books-Bundle: Shut Up and Code!
9 Books
"Shut up and code." Laughter in the audience. The hacker had just plugged in his notebook and started sharing his screen to present his super-smart Python script. "Shut up and code" The letters written in a white literal coding font on black background was the hackers' home screen background mantra. At the time, I was a first-year computer... - #9
CCDE Practical Studies (All labs)
3 Books
CCDE lab - #10
Modern C++ by Nicolai Josuttis
2 Books