-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path7-6.cpp
68 lines (57 loc) · 1.27 KB
/
7-6.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*定义一个shape抽象类 派生出Rectangle类和Circle类 计算各派生类对象的面积
关键是派生类的使用*/
#include<iostream>
#include<cmath>
using namespace std;
const double Pi=3.14159;
//抽象类中带有纯虚函数 但并不是说全是纯虚函数?
class Shape{
virtual double area()const =0; //area为常参
virtual void show()=0;
};
class Rectangle:public Shape{
private:
int x,y;
public:
Rectangle(int x=0,int y=0) //抽象类的派生不用再给抽象类赋值
{
this->x=x,this->y=y;
}
void show(){
cout<<"Rectangle:";
}
double area()const{
return x*y;
}
};
class Circle:public Shape{
private:
int radius;
public:
Circle(int R=0)
{
radius=R;
}
void show()
{
cout<<"Circle:";
}
double area()const{
return Pi*radius*radius;
}
};
int main()
{
int radius,x,y;
cout<<"please input Rectangle's length and weight:";
cin>>x>>y;
Rectangle A(x,y);
cout<<"please input Circle's radius:";
cin>>radius;
Circle B(radius);
A.show();
cout<<A.area()<<endl;
B.show();
cout<<B.area()<<endl;
return 0;
}