| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 378 人关注过本帖
标题:[转载][求助]
只看楼主 加入收藏
lanshulin
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2006-12-7
收藏
 问题点数:0 回复次数:2 
[转载][求助]

#include "stdafx.h"
#include "iostream.h"
class Point
{
public:
Point(double i,double j){x=i;y=j;}
double Area() const{return 0.0;}
private:
double x,y;
};
class Rectangle:public Point
{
public:
Rectangle(double i,double j,double k,double l);
double Area()const{return w*h;}
private:
double w,h;
}
Rectangle::Rectangle(double i,double j,double k,double l):Point(i,j)
{
w=k;
h=l;
}
void fun(Point &s)
{
cout<<s.Area()<<endl;
}
void main()
{
Rectangle rec(3.0, 5.2, 15.0, 25.0);
fun(rec);
}
调试的错误是
C:\Program Files\Microsoft Visual Studio\MyProjects\lanshulin31\lanshulin31.cpp(22) : error C2533: 'Rectangle::Rectangle' : constructors not allowed a return type
C:\Program Files\Microsoft Visual Studio\MyProjects\lanshulin31\lanshulin31.cpp(33) : error C2264: 'Rectangle::Rectangle' : error in function definition or declaration; function not called
这是什么错误啊,高手指教

搜索更多相关主题的帖子: private include public double return 
2006-12-07 12:39
kai
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:52
帖 子:3450
专家分:59
注 册:2004-4-25
收藏
得分:0 
[CODE]#include <iostream>
using namespace std;

class Point
{
public:
Point(double i = 0, double j = 0)
{
x=i;
y=j;
}
private:
double x, y;
};

class Rectangle
{
public:
Rectangle(double i, double j, double k, double l)
{
point = Point(i, j);
w=k;
h=l;
}
double area() const
{
return w*h;
}
private:
Point point;
double w,h;
};


int main()
{
Rectangle rect(3.0, 5.2, 15.0, 25.0);
cout<<rect.area()<<endl;

return 0;
}

[/CODE]

自由,民主,平等,博爱,进步.
中华民国,我的祖国,中华民国万岁!中华民国加油!
本人自愿加入中国国民党,为人的自由性,独立性和平等性而奋斗!
2006-12-08 04:41
小巴
Rank: 1
等 级:新手上路
帖 子:13
专家分:0
注 册:2006-11-27
收藏
得分:0 
2楼
格式看起来好舒服
代码写的好

我向你学习
2006-12-08 21:24
快速回复:[转载][求助]
数据加载中...
 
   



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

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