- A class is the most important feature of C++ that supports object-oriented programming (OOP). It allows a program to be designed using classes which are a collection of data and functions.
- When an object of a class is declared, memory is allocated for that object's data members. However, defining a class alone does not allocate memory - it only specifies the data members and member functions.
- Member functions can access and manipulate the class's data members. They are called through an object using the dot operator. Constructors are special member functions that initialize an object's data members when it is created.