Union declaration
  • References/C, C++/C++/Language

A union is a special class type that can hold only one of its non-static

2025-01-10 15:47:30
Address of an overloaded function
  • References/C, C++/C++/Language

Besides function-call expressions, where

2025-01-10 15:47:30
Elaborated type specifier
  • References/C, C++/C++/Language

Elaborated type specifiers may be used to refer to a previously-declared class name (class, struct, or union) or to a previously-declared enum name even if the name was hidden

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

Initializes an object from braced-init-list. Syntax direct-list-initialization

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

Sets the initial values of the static constants. Syntax

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

A function declaration introduces the function name and its type. A function definition associates the function name/type with the function body.

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

A move constructor of class T is a non-template constructor whose first parameter is T&&, const T&&, volatile T&&

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

Creates and initializes objects with dynamic storage

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

Each name that appears in a C++ program

2025-01-10 15:47:30
Constructors and member initializer lists
  • References/C, C++/C++/Language

Constructor is a special non-static member

2025-01-10 15:47:30