| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 698 人关注过本帖
标题:[求助]有关派生类的
取消只看楼主 加入收藏
静思
Rank: 3Rank: 3
来 自:沈阳
等 级:新手上路
威 望:8
帖 子:630
专家分:0
注 册:2006-2-28
收藏
 问题点数:0 回复次数:1 
[求助]有关派生类的
#include<iostream>
using namespace std;
const float PI=(float)3.14159;
class Shape
{
public:
Shape(int a){sh=a;}
private:
int sh;
};
class Rectangle:public Shape
{
public:
Rectangle(float wid,float len,int b):Shape(b){width=wid;lenth=len;}
float GetArea();
void display();
private:
float width;
float lenth;
};
float Rectangle::GetArea()
{
return width*lenth;
}
void Rectangle::display()
{
cout<<"Its area is: "<<GetArea()<<endl;
}
class Circle:public Shape
{
public:
Circle(float r=0.0,int c):Shape(c){radius=r;}//在编译时显示 : error C2548: 'Circle::Circle' : missing default parameter for parameter 2
void display();
float GetArea();
private:
float radius;
};
float Circle::GetArea()
{
return PI*radius*radius;
}
void Circle::display()
{
cout<<"Its area is: "<<GetArea()<<endl;
}
class Square:public Rectangle
{
public:
Square(float a=0.0,float b=0.0){a=wid;b=len;}
private:
float wid;
float len;
};
void main()
{
Circle A(3.0,2);
A.display();
Rectangle R(2.0,3.0,2);
}
我已经在类Circle中为Shape类传递了参数,但为啥还显示错误呢??
我不太明白,麻烦哪位看一下。
谢谢!!!
搜索更多相关主题的帖子: 派生类 
2006-04-27 22:05
静思
Rank: 3Rank: 3
来 自:沈阳
等 级:新手上路
威 望:8
帖 子:630
专家分:0
注 册:2006-2-28
收藏
得分:0 
该程序先声明一个基类,再在此基础上派生出Rectangle类和Circle类,再使用Rectangle类创建一个Square类。

英者自知,雄者自胜
2006-04-27 22:39
快速回复:[求助]有关派生类的
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.017184 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved