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

Inside a class, declares members not bound to specific instances. Syntax

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

Exception handling provides a way of transferring control and information from some point in the execution of a program to a handler associated with a point previously passed

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

A move 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
Object lifetime
  • References/C, C++/C++/Language

Every object has a lifetime, which is a runtime property:

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

Any class type (whether declared with class-key class or struct) may be declared as derived from one or more base

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

A variable template defines a family of variables or static data members. Syntax

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

Terminates current function and returns specified value to the caller function. Syntax

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

Initialization of a variable provides its initial value at the time of construction. The initial value may be provided in the initializer

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

Objects,

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

Includes other source file into current source file at the line immediately after the directive . Syntax

2025-01-10 15:47:30