Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,853 questions

51,774 answers

573 users

How to implement pure virtual functions in C++

1 Answer

0 votes
#include <iostream>

using std::cout;
using std::endl;

class Shape {
public:
	Shape() {}
	virtual ~Shape() {}
	virtual double Area() = 0;
	virtual double Perimeter() = 0;
private:
};

class Circle : public Shape {
public:
	Circle(int _radius) :radius(_radius) {}
	virtual ~Circle() {}
	double Area() { return 3.14 * radius * radius; }
	double Perimeter() { return 2 * 3.14 * radius; }
private:
	int radius;
};

class Rectangle : public Shape {
public:
	Rectangle(int _length, int _width) : length(_length), width(_width) {}
	virtual ~Rectangle() {}
	double Area() { return length * width; }
	double Perimeter() { return 2 * length + 2 * width; }
private:
	int length;
	int width;
};

int main()
{
	Shape *p;
	p = new Circle(7);
	cout << p->Area() << endl;
	cout << p->Perimeter() << endl;
	delete p;

	p = new Rectangle(3, 5);
	cout << p->Area() << endl;
	cout << p->Perimeter() << endl;
	delete p;

	return 0;
}

/*
run:

153.86
43.96
15
16

*/

 



answered Apr 1, 2018 by avibootz

Related questions

1 answer 168 views
3 answers 166 views
166 views asked Jan 29, 2023 by avibootz
1 answer 154 views
1 answer 153 views
1 answer 151 views
1 answer 151 views
...