Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341408
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:07:19

这是一个类问题
#include
#include
class country
{
private:
char Name[20];
float Num,Area;
public:
country(char *name,float num,float area);
country( country&C);
~country(){};
void setcountry(char *name,float num,float area);
void Getcountry();
};
country::country(char *name,float num,float area)
{
strcpy(Name,name);
Num=num,Area=area;
}
country::country(country &c)
{
strcpy(Name,c.Name);
Num=c.Num,Area=c.Area;
}
void country::setcountry(char*name,float num,float area)
{strcpy(Name,name);
Num=num,Area=Area;
}
void  country::Getcountry()
{
cout<<"名称:"<
}
void main()
{
country A("美国佬",100,50);
A.Getcountry();country E(A);E.Getcountry();
E.setcountry("美国 ",1000,500);
E.Getcountry();
}
      为什么最后输出的结果中重复了“名称:美国佬人口100面积:50”
谢谢!!!


--------------------next---------------------

阅读(1097) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~