Abstract class in C++ language In this tutorial, we will discuss the Oop concept of Abstract class in C++ language An abstract class in C++ language, which is a class contain pure one or more(at least one) virtual function in a base class . A pure virtual function is a virtual member function, that noticeable…
Category: Oop C++
Inheritance in C++ programming language
Inheritance in C++ programming language In this tutorial, we will discuss the OOP concept of Inheritance in C++ programming language. Inheritance is one of the Oop concepts in object-oriented programs such as C++, java. It is where one object acquires all the properties of (data members and methods) it’s the parent or base class. It…