abstract class
  • References/C, C++/C++/Language

Defines an abstract type which cannot be instantiated, but can be used as a base class. Syntax pure

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

A class template defines a family of classes. Syntax

2025-01-10 15:47:30
Filename and line information
  • References/C, C++/C++/Language

Changes the current file name and number in the preprocessor. Syntax

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
Function-try-block
  • References/C, C++/C++/Language

Establishes an exception handler around the body of a function. Syntax The function-try-block is one of

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

Operator name Syntax

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

A declaration of a class/struct or

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

Introduces a name that is defined elsewhere into the declarative region where this using-declaration appears.

2025-01-10 15:47:30