summaries

Effective C++: 55 Specific Ways to Improve Your Programs and Designs

mendi926Vocabulary listWords: 5
English
English
AI Generated
optimizationThe process of making something more efficient
Definitions:
The action of making the best or most effective use of a situation or resource
compilerA program that converts instructions into a machine-code or low-level format
Definitions:
A software program that translates code written in a high-level programming language into machine language
overloadMultiple programming functions with the same name but different parameters
Definitions:
In C++, function overloading is a feature that allows us to have more than one function having same name but different parameter list
templatePre-defined code that can be reused
Definitions:
In C++, a template is a blueprint or formula for creating a generic class or a function
inheritanceOne class acquires the properties of another class
Definitions:
Inheritance in C++ is a process of acquiring the features and behaviors of a class by another class