Starter Tutorials Blog
Tutorials and articles related to programming, computer science, technology and others.
Subscribe to Startertutorials.com's YouTube channel for different tutorial and lecture videos.
Home » Programming » C++ Programming » Programs » Polymorphism » CPP program to demonstrate runtime polymorphism
Suryateja Pericherla Categories: Polymorphism. No Comments on CPP program to demonstrate runtime polymorphism
Join Our Newsletter - Tips, Contests and Other Updates
Email
Name

In this article we will look at how to implement a CPP program to demonstrate runtime polymorphism. A C++ program is provided below to illustrate runtime polymorphism. Program is as follows:

#include <iostream>
using namespace std;
class Animal
{
	public:
		virtual void sound() = 0;
		virtual void move() = 0;
};
class Dog : public Animal
{
	public:
		void sound()
		{
			cout<<"Bow wow wow"<<endl;
		}
		void move()
		{
			cout<<"Dog is moving"<<endl;
		}
};
class Cat : public Animal
{
	public:
		void sound()
		{
			cout<<"Meow meow meow"<<endl;
		}
		void move()
		{
			cout<<"Cat is moving"<<endl;
		}
};
int main()
{
	Animal *a;
	a = new Dog();
	a->sound(); //run-time polymorphism
	a = new Cat();
	a->sound(); //run-time polymorphism
	return 0;
}

 

Output for the above program is as follows:

Bow wow wow
Meow meow meow

 

How useful was this post?

Click on a star to rate it!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?

Leave a Reply

Your email address will not be published. Required fields are marked *

Facebook
Twitter
Pinterest
Youtube
Instagram
Blogarama - Blog Directory