Startertutorials 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 » Inheritance » Pure Virtual Function Program in C++
Suryateja Pericherla Categories: Inheritance. No Comments on Pure Virtual Function Program in C++
5
(2)

In this article we will learn how to implement a pure virtual function program in C++. A C++ program is provided to illustrate the concept of pure virtual function and calculate the area of different shapes by using abstract class. Program is as follows:

#include <iostream>
using namespace std;
class Shape
{
	public:
		virtual void area() = 0;
};
class Rectangle : public Shape
{
	private:
		int l;
		int b;
	public:
		Rectangle(int x, int y)
		{
			l = x;
			b = y;
		}
		void area()
		{
			cout<<"Area of rectangle is: "<<(l*b)<<endl;
		}
};
class Circle : public Shape
{
	private:
		int r;
	public:
		Circle(int x)
		{
			r = x;
		}
		void area()
		{
			cout<<"Area of circle is: "<<(3.142*r*r)<<endl;
		}
};
int main()
{
	Shape *s;
	s = new Rectangle(10, 20);
	s->area();
	s = new Circle(2);
	s->area();
	return 0;
}

 

Output for the above program is as follows:

Area of rectangle is: 200
Area of circle is: 12.568

 

How useful was this post?

Click on a star to rate it!


Subscribe to our monthly newsletter. Get notified about latest articles, offers and contests.


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