C++ OOP – Virtual Functions
In this lesson, we would cover Virtual Functions. We’ll also see example where it is used. Introduction to Virtual Functions Using Virtual Functions Benefits of …
In this lesson, we would cover Virtual Functions. We’ll also see example where it is used. Introduction to Virtual Functions Using Virtual Functions Benefits of …
As a word, Polymorphism means ‘many forms’. In OOP, it arise when there are classes that are related to each other via inheritance. So polymorphism …
In this lesson we would cover C++ overloading. Precisely, you’ll learn about Function Overloading and Operator Overloading. Function Overloading Operator Overloading 1. Function Overloading …
Overriding is yet another importance feature in OOP. Although its application is not restricted to OOP, we’ll use OOP as a foundation. Overview of Function …
In the previous lesson we covered the Constructors. In this lesson, we would examine yet another OOP concept: Inheritance. The following topics will be addressed: …