C++ language
  • References/C, C++/C++/Language

This is a brief reference of available C++ language constructs.

2025-01-10 15:47:30
Declarations
  • References/C, C++/C++/Language

Declarations introduce (or re-introduce) names into the C++ program. Each kind of entity is declared differently.

2025-01-10 15:47:30
Converting constructor
  • References/C, C++/C++/Language

A constructor that is not declared with the specifier explicit

2025-01-10 15:47:30
Conditional inclusion
  • References/C, C++/C++/Language

The preprocessor supports conditional compilation of parts of source file. This behavior is controlled by #if, #else, #elif, #ifdef

2025-01-10 15:47:30
dynamic_cast conversion
  • References/C, C++/C++/Language

Safely converts pointers and references to classes up, down, and sideways along the inheritance hierarchy. Syntax

2025-01-10 15:47:30
Definitions and ODR
  • References/C, C++/C++/Language

Definitions are declarations that fully define

2025-01-10 15:47:30
Phases of translation
  • References/C, C++/C++/Language

The C++ source file is processed by the compiler as if the following phases take place, in this exact order: Phase 1

2025-01-10 15:47:30
switch statement
  • References/C, C++/C++/Language

Transfers control to one of the several statements, depending on the value of a condition. Syntax

2025-01-10 15:47:30
Qualified name lookup
  • References/C, C++/C++/Language

A qualified name is a name that appears on the right hand side of the scope resolution operator :: (see also qualified identifiers). A qualified name may

2025-01-10 15:47:30
Replacing text macros
  • References/C, C++/C++/Language

The preprocessor supports text macro replacement. Function-like text macro replacement is also supported. Syntax

2025-01-10 15:47:30