-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDate.h
42 lines (36 loc) · 809 Bytes
/
Date.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
class Date
{
public:
Date(int y, int m, int d) : y(y), m(m), d(d)
{}
int year() const
{ return this->y; }
int month() const
{ return this->m; }
int day() const
{ return this->d; }
std::string toString() const
{
stringstream ss;
ss << this->y << '-' << this->m << '-' << this->d;
string s;
ss >> s;
return s;
}
Date nextDay(int delta = 1) const
{
time_t tt;
time(&tt);
tm *t = localtime(&tt);
t->tm_mday = this->d;
t->tm_mon = this->m - 1;
t->tm_year = this->y - 1900;
tt = mktime(t) + delta * 24 * 60 * 60;
tm *a = gmtime(&tt);
return Date(a->tm_year + 1900, a->tm_mon + 1, a->tm_mday);
}
protected:
int y;
int m;
int d;
};