explicit specifier
  • References/C, C++/C++/Language

Specifies constructors and conversion operators (since C++11)

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
Arithmetic operators
  • References/C, C++/C++/Language

Returns the result of specific arithmetic operation. Operator name Syntax

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

The typedef declaration provides a way to create an alias that can be used anywhere in place of a (possibly complex) type name. Syntax

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
Constructors and member initializer lists
  • References/C, C++/C++/Language

Constructor is a special non-static member

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

Converts between types by reinterpreting the underlying bit pattern. Syntax

2025-01-10 15:47:30
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
nullptr
  • References/C, C++/C++/Language

Syntax nullptr

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

Defines the semantics of computer memory storage for the purpose of the C++ abstract machine. The memory available to a C++ program is one or

2025-01-10 15:47:30