标题:请问各位我的这个关于类的程序错在哪?
只看楼主
yy_007
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2006-2-27
 问题点数:0 回复次数:2 
请问各位我的这个关于类的程序错在哪?
请问各位我的这个关于类的程序错在哪?
#include<iostream.h>
class Date{
public:
void setDate(int y,int m,int d);
void showDate();
private:
int year;
int month;
int day;
};
void Date::setDate(int y,int m,int d);
{
year=y;
month=m;
day=d;
}
inline void Date::showDate()
{
cout<<year<<"."<<month<<"."<<day<<endl;
}
void main()
{
Date date1,date2;
cout<<"date1 set and output:"<<endl;
date1.setDate(1998.4.28);
date1.showDate();//ues the showDate
cout<<"Date2 set and output:"<<endl;
date2.setDate(2002.11.14);
date2.showDate();
}
谢谢!
搜索更多相关主题的帖子: private include public 
2006-03-08 13:57
olivezhang
Rank: 1
等 级:新手上路
帖 子:223
专家分:0
注 册:2005-9-14
得分:0 
这句:date1.setDate(1998.4.28);的参数错了,应该是:
date1.setDate(1998,4,28);中间用逗号隔开,而非句号。



谷底深深行 ,峰顶漫漫步......@_@
2006-03-08 14:02
yy_007
Rank: 1
等 级:新手上路
帖 子:9
专家分:0
注 册:2006-2-27
得分:0 
谢谢你。
2006-03-08 16:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-49093-1-1.html




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

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