Access member functions with a pointer to the base class

Source: Internet
Author: User

[Cpp]
/*
* Copyright (c) 2013, computer College, Yantai University
* All rights reserved.
* File name: test. cpp
* Author: Fan Lulu
* Completion date: January 1, May 31, 2013
* Version: v1.0
*
* Input Description: None
* Problem description:
* Program output:
* Problem analysis:
* Algorithm Design: omitted
*/

/*
* Copyright (c) 2013, computer College, Yantai University
* All rights reserved.
* File name: test. cpp
* Author: Fan Lulu
* Completion date: January 1, May 31, 2013
* Version: v1.0
*
* Input Description: None
* Problem description:
* Program output:
* Problem analysis:
* Algorithm Design: omitted
*/
 

First look at a program:

[Cpp]
# Include <iostream>
Using namespace std;
Class Vehicle // Transportation
{
Public:
Void run () const
{
Cout <"run a vehicle" <endl;
}
};
Class Car: public Vehicle // Car
{
Public:
Void run () const
{
Cout <"run a car." <endl;
}
};
Class Airplane: public Vehicle // aircraft
{
Public:
Void run () const
{
Cout <"run a airplane." <endl;
}
};
Int main ()
{
Cout <"(a) directly access member functions using objects:" <endl;
Vehicle v;
V. run ();
Car car;
Airplane airplane;
Car. run ();
Airplane. run ();
Cout <"(B) uses a pointer to the base class to access the member function:" <endl;
Vehicle * vp;
Vp = & car;
Vp-> run ();
Vp = & airplane;
Vp-> run ();
Return 0;
}

# Include <iostream>
Using namespace std;
Class Vehicle // Transportation
{
Public:
Void run () const
{
Cout <"run a vehicle" <endl;
}
};
Class Car: public Vehicle // Car
{
Public:
Void run () const
{
Cout <"run a car." <endl;
}
};
Class Airplane: public Vehicle // aircraft
{
Public:
Void run () const
{
Cout <"run a airplane." <endl;
}
};
Int main ()
{
Cout <"(a) directly access member functions using objects:" <endl;
Vehicle v;
V. run ();
Car car;
Airplane airplane;
Car. run ();
Airplane. run ();
Cout <"(B) uses a pointer to the base class to access the member function:" <endl;
Vehicle * vp;
Vp = & car;
Vp-> run ();
Vp = & airplane;
Vp-> run ();
Return 0;
}

The output result of this program is:

You can see that (B) accessing the member function with a pointer to the base class outputs "run a vehicle .", This is not our purpose.

We can modify the base class to change the subsequent output:

[Cpp]
Class Vehicle // Transportation
{
Public:
Virtual void run () const
{
Cout <"run a vehicle" <endl;
}
};

Class Vehicle // Transportation
{
Public:
Virtual void run () const
{
Cout <"run a vehicle" <endl;
}
}; Add virtual in front of the member function run in the base class to change the output result. Let's take a look at the result:

We can see that the output results have changed in (B.

The reason is that a virtual function is added before the member function run in the base class to make the run function a virtual function. When the two Derived classes Car and Airplane are declared, the virtual function run will be overloaded, the run function in the base class is replaced by a function of the same name in the derived class. Therefore, when the run function is called, The run function in the derived class is called.


 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.