早教吧 育儿知识 作业答案 考试题库 百科 知识分享

定义抽象基类shape类,point类,circle类,cylinder类都是shape类的直接派生类,间接派生类,求面积体积,实现动态关联。

题目详情
定义抽象基类shape类,point类,circle类,cylinder类都是shape类的直接派生类,间接派生类,求面积体积,实现动态关联。
▼优质解答
答案和解析
class shape //抽象基类
{
int m_area; //面积
int m_volume; //体积
virtual int GetArea() = 0; //获取面积
virtual int GetVolume() = 0;//获取体积
}