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
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
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
Copy assignment operator
  • References/C, C++/C++/Language

A copy assignment operator of class T is a non-template non-static member function with the name operator= that takes exactly one parameter of type

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
Definitions and ODR
  • References/C, C++/C++/Language

Definitions are declarations that fully define

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

A template is a C++ entity that defines one of the following: a family of classes (

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
static_cast conversion
  • References/C, C++/C++/Language

Converts between types using a combination of implicit and user-defined conversions. Syntax

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

The noexcept operator performs a compile-time check that returns true if an expression is declared to not throw any exceptions. It

2025-01-10 15:47:30