Shape类是表示形状的抽象类,area()为求面积的函数。从shape类派生triangle和circle给以求面积函数。

#include<iostream>Usingnamespacestd;Classshape{public:virtualfloatarea()=0;};intmain(... #include<iostream>
Using namespace std;
Class shape
{public:virtual float area()=0;};
int main()
{
shape *sp;
sp=new circle(10);
sp=new rectangle(6,4);
cout<<sp->area()<<endl;
}
用类模板实现
模板函数
展开
 我来答
porker2008
2014-06-16 · TA获得超过1.4万个赞
知道大有可为答主
回答量:7066
采纳率:62%
帮助的人:1.1亿
展开全部
class circle : public shape {
double _r;
public:
circle(double r) : _r(r) {}
float area() {
return 3.141592653 * _r * _r;
}
};

class rectangle : public shape {
double _l, _h;
public:
rectangle(double l, double h) : _l(l), _h(h) {}
float area() {
return _l * _h;
}
};
更多追问追答
追问
能用函数模版实现吗
追答
不能
来自:求助得到的回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式