Answers

Question and Answer:

  Home  C++ Inheritance

⟩ What is base class?

Inheritance is one of the important features of OOP which allows us to make hierarchical classifications of classes. In this, we can create a general class which defines the most common features. Other more specific classes can inherit this class to define those features that are unique to them. In this case, the class from which other classes are inherited is referred as base class.

For example, a general class vehicle can be inherited by more specific classes car and bike. The class vehicle is base class in this case.

class Base

{

int a;

public:

Base()

{

a = 1;

cout <<"inside Base class";

}

};

class Derived:: public Base //class Derived is inheriting class Base publically

{

int b;

public:

Derived()

{

b = 1;

cout <<"inside Derived class";

}

};

 177 views

More Questions for you: