Chapter 1

Introduction

Images

Cippi learns the basics.

Before I dive into the details of the C++ Core Guidelines in the next chapters, I want to provide a short introduction.

Target readership

The target readership for the C++ Core Guidelines is all C++ programmers, including programmers who might consider C.

Aim

The rules of the guidelines promote modern C++ and aim to achieve a more uniform style. Of course, not all rules can be applied to legacy code in particular. This means you should apply these rules to new code but also to legacy code that is broken or has to be refactored. The focus is on type safety and resource safety. The rules are not just about “don’t do that”; they are prescriptive and often checkable. Their design allows gradual adoption.

Non-aims

Now we know what the aim of the rules is. The non-aims are also interesting. The guidelines are not meant to be read serially or be a replacement for a tutorial. Additionally, they provide no recipes to convert old C++ to modern C++, nor are they so precise that you can follow them blindly, nor are they a safe subset of C++.

Enforcement

Without enforcement, the guidelines are not manageable in large code bases. For this reason, each rule has an enforcement section. The enforcement can be a code review, dynamic or static code analysis. Related rules are grouped into profiles. The C++ Core Guidelines define profiles to protect from type violations, bounds violations, and lifetime violations.

Structure

The rules follow a typical structure:

  • Reason: rationale for the rule

  • Example: code snippet, which shows good or bad code regarding the rule

  • Alternative: alternative for a “don’t do this” rule

  • Exception: reasons to not apply the rule

  • Enforcement: how the rule can be checked

  • See also: references to other rules

  • Note: additional notes to a rule

  • Discussion: references to additional rationales or examples

Major sections

The C++ Core Guidelines consist of 16 major sections. I listed them for a short overview.

  • Introduction

  • Philosophy

  • Interfaces

  • Functions

  • Classes and class hierarchies

  • Enumerations

  • Resource management

  • Expressions and statements

  • Performance

  • Concurrency

  • Error handling

  • Constants and immutability

  • Templates and generic programming

  • C-style programming

  • Source files

  • The Standard Library