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

Returns the result of a boolean operation. Operator name Syntax

2025-01-10 15:47:30
Storage class specifiers
  • References/C, C++/C++/Language

The storage class specifiers are a part of the decl-specifier-seq of a

2025-01-10 15:47:30
The rule of three/five/zero
  • References/C, C++/C++/Language

Rule of three If a class requires a user-defined

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
Explicit type conversion
  • References/C, C++/C++/Language

Converts between types using a combination of explicit and implicit conversions. Syntax

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

Namespaces provide a method for preventing name conflicts in large projects. Symbols declared inside a namespace block are placed in a named

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
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