标题:问题很多啊,我搞不懂哪里出错了
取消只看楼主
zjl138
Rank: 1
等 级:新手上路
威 望:1
帖 子:788
专家分:0
注 册:2007-11-12
 问题点数:0 回复次数:3 
问题很多啊,我搞不懂哪里出错了
#include<iostream>
#include<iomanip>
using namespace std;
class Date{
int year;
int month;
int day;
void init();
public:
Date(const string& s);
Date(int y=2000,int m=1,int d=1);
bool isLeapyear()const;
friend ostream& operator<<(ostream& o,const Date& d);
};
void Date::init(int y,int m,int d){
if(y>5000||y<1||m<1||m>12||d>1||d<31)
exit(1);//停机
}
Date::Date(int y,int m,int d){
year=y,month=m,day=y;
init();
}
Date::Date(const string& s){
year=atoi(s.substr(0,4).c_str());
month=atoi(s.substr(5,2).c_str());
day=atoi(s.substr(8,2)>c_str());
init();
}
bool Date::isLeapyear()const{
return(year%4==0&&year%100)||year%400==0;
}
ostream& operator<<(ostream& o,const Date& d){
o<<setfill('0')<<setw('4')<<d.year<<'-'<<setw('2')<<d.month<<'-';
return o<<setw('2')<<d.day<<'\n'<<setfill(' ');
}
int mian(){
Date c("2005-12-28");
Date d(2003,12,6);
Date e(2002);
Date f(2002,12);
Date g;
cout<<c<<d<<e<<f<<g;
}
搜索更多相关主题的帖子: include public friend 
2007-11-14 12:53
zjl138
Rank: 1
等 级:新手上路
威 望:1
帖 子:788
专家分:0
注 册:2007-11-12
得分:0 

init()查验被捆绑的对象的年,月,日数据是它的权利.
第一:init()为类的成员函数.
第二:init()虽没有捆绑对象,但实际上调用者(成员函数)已经把自已正在处理的对象暗中传递给了init().
要不麻烦"Whnight"按你自已的方法调试出来,再发给我,我看一下具体要怎样实现!!谢谢了


i like linux...
2007-11-14 16:23
zjl138
Rank: 1
等 级:新手上路
威 望:1
帖 子:788
专家分:0
注 册:2007-11-12
得分:0 
嗯.可能是我错了吧.但即使用参数,我还是不大会,因为我也试了用参数但还是不行.
还有就是那main()是我搞错了,不好意思.

i like linux...
2007-11-15 12:00
zjl138
Rank: 1
等 级:新手上路
威 望:1
帖 子:788
专家分:0
注 册:2007-11-12
得分:0 

我试了,但还是不行.
day=atoi(s.substr(8,2)>c_str());这里要改为day=atoi(s.substr(8,2)>.c_str());少了一个点.
还有会不会是头文件的问题.因为使用了友元,所以跟用这个头文件#include<iostream>有哪些地方对不上(在VC++6.0编译器中).
是不是要用#include<iostream.h>这个头文件,或者可以用#include<iostream>,但程序还少了些什么.
如果哪位能把它调试出来,麻烦把代码发上去,谢谢.


i like linux...
2007-11-15 17:44



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




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

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