Answer Posted / poonam
Inheritance is deriving a new class or classes from its base
class or classes.
Inheritance is of basically five types:
-Single inheritance
-Multiple inheritance
-Multilevel inheritance
-Hierarchical inheritance
-Hybrid inheritance
There are three modes by which we can inherit a class.
1.Private visibility mode
2.Public visibility mode
3.Protected visibility mode
Eg:-
#include<iostream>
using namespace std;
class base
{
private:
int a;
public:
void geta()
{
cout<<"\nEnter the value of 'a':;
cin>>a;
}
void puta()
{
cout<<"\nValue of 'a' is:"<<a;
}
};
class derived:public base //base class is ...
{ //publically inherited
private:
int b;
public:
void getb()
{
cout<<"\nEnter the value of b:";
cin>>b;
}
void putb()
{
cout<<"\nValue of b is:"<<b;
}
};
int main()
{
derived d;
d.geta();
d.puta();
d.getb();
d.putb();
return 0;
}
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
What is class in oop with example?
What is the difference between inheritance and polymorphism?
How to use CMutex, CSemaphore in VC++ MFC
What is oops in simple words?
What is multilevel inheritance?
what's the basic's in dot net
#include
What are the two different types of polymorphism?
• What are the desirable attributes for memory managment?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Can you inherit a private class?
What is constructor overloading in oop?
What is difference between inheritance and polymorphism?
Why is encapsulation used?
What is polymorphism used for?