Searching for: Class Methods in C++
Class Declaration & Structure
Language: C++

Classes are a blueprint for creating individual objects that contain the general characteristics of a defined object type.

Inheritance
Language: C++

Inheritance is used to inherit another class' members, including fields and methods. A derived class inherits a base class' members.

Destructor
Language: C++

The destructor is a method called when the object is destroyed.

Constructor
Language: C++

A constructor is a special method that builds the instance of an object when a new object is created.


  Next Page >