operator overloading
  • References/C, C++/C++/Language

Customizes the C++ operators for operands of user-defined types. Syntax Overloaded operators are

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

Destructs object(s) previously allocated by the new expression

2025-01-10 15:47:30
Implementation defined behavior control
  • References/C, C++/C++/Language

Implementation defined behavior is controlled by #pragma directive. Syntax

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

Syntax this

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

Inspects the declared type of an entity or queries the type and value category of an expression. Syntax

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

Declares a variable of a pointer or pointer-to-member type. Syntax A pointer declaration is any simple

2025-01-10 15:47:30
Argument-dependent lookup
  • References/C, C++/C++/Language

Argument-dependent lookup, also known as ADL, or Koenig lookup, is the set of rules for looking up the unqualified function names in

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

A default constructor is a constructor which can be called with no arguments (either defined with an empty parameter list, or with default arguments provided for every parameter)

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

Associates one or more exception handlers (catch-clauses) with a compound statement. 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