Skip to main content

C++ Virtual Keyword and Inheritance

virtual keyword in C++



Let's say you have a class A:
Code:
class A {
  public:
  void hello() { std::cout << "Hello from A." << std::endl; }
};
And a derived class B:
Code:
class B : public A
{
};
You can create a B object and call the hello method.
Code:
B b;
b.hello();
The output will be "Hello from A." But you want to override the hello method. You'll write:
Code:
class B : public A
{
  public:
  void hello() { std::cout << "Hello from B." << std::endl; }
};
Now the output of b.hello() will be "Hello from B." But one of the advantages of inheritance is that you can pass a B object to a funcion that expects a pointer to A.
Code:
void say_hello(A* a)
{
  a->hello();
}
say_hello(&b); // It's OK to do this.
The output will be "Hello from A," because A's hello function is being called. However, if A's hello function were virtual:
Code:
class A
{
  public:
  virtual void hello() { std::cout << "Hello from A." << std::endl; }
};
Then the output of say_hello(&b) would have been "Hello from B." Think of virtual functions as pointer to functions that can be overridden by derived classes and will work even when the derived object is passed (as a pointer) to a function that expects an object from the base class.


An Example:-

#include<iostream>

using namespace std;


class base
{
public:
int x;
base()
{
cout<<"inside base const\n";
}
};

//declaring both classes to be derived as virtual to prevent multiple copies of base to be inherited
class base1:virtual public base
{
public:
base1()
{
cout<<"inside base1 const\n";

}
};

class base2:virtual public base
{
public:
base2()
{
cout<<"inside base2 const\n";
}


};

class child:public base1,public base2
{
public:
child()
{
cout<<"inside child const\n";
}


};



int main()
{
child ch;
cout<<ch.x;

return 0;
}

Comments

Popular posts from this blog

CDAC CCAT Rank - Which Centre you Should go for...

Subscribe us for our YouTube channel and any kind of help Click here to ask questions regarding CDAC 1. C-DAC (Head Quarters) Pune    CDAC's Admission Booklet- Process of Admission to Post Graduate Diploma Courses of C-DAC                         click below to know about the CCAT's This batch allotment                click above to know about the CCAT's This batch allotment Rank 1-300 c-dac HQ has been the best from the start. 2.  Sunbeam Pune Rank 300-500 I got very positive feedback from my friends who are in c-dac banglure main campus,since there are many companies you may get more opportunities. 3.  C-DAC Knowledge Park Rank 400-700 It as very good faculty .Almost all the students get placed here every year. 4. C-DAC Hyderabad Rank 200-1000 (It depends on the course which you select) C-DAC hyderabad is very good for the course PG-DESD. PG-DESD course is in hyderbad is better than pune HQ as per the past feedback.It as v

CDAC COURSES AND PLACEMENTS, WHICH IS BETTER FOR YOU

Subscribe us for our YouTube channel and any kind of help   Click here to ask questions regarding CDAC Before going through this post, I would like to draw your attention towards the importance of this post. This page not only explains my experience in CDAC but also aims at answering the queries of you all who are going or looking to have a course from CDAC. Kindly post your queries at the bottom of this page and we will get back to you within 24 hours. Kindly do not post your queries as an Anonymous user and do not forget to subscribe via email so as to keep track of your query.                         click below to know about the CCAT's This batch allotment                 click below to know about the CCAT's This batch allotment ______________________________________________ NOW a day lot of the graduates and post graduates are wondering most of the times on which course they should go for. What are the pros & cons of joining a particular ce

Placement Statistics - 2011 & 2012

Subscribe us for our YouTube channel and any kind of help                          Post your queries below and we will get back to you in no more than 24 hours.  Click here to ask questions regarding CDAC                         click below to know about the CCAT's This batch allotment                     click above to know about the CCAT's This batch allotment CDAC's Admission Booklet- Process of Admission to Post Graduate Diploma Courses of C-DAC Click here to see placement statistics About C-CAT, Exam Pattern and Books No. of Seats Across Various Training Centres Important Dates - 2014 Tags: CDAC, CDAC scope in future, CDAC placements, CDAC training, CDAC recruitment, CDAC training centres, DSSD, DESD, DAC, PGDSSD, PGDESD, PGDAC, DABC, PGDABC, VLSI, PGDITISS, PGDIVESD, PGDESD, PGDWiMC, placement statistics