C/C++实现日期计算器的示例代码

时间:2022-11-27 10:01:13

问题介绍:

今天突然看到一个问题看起来蛮有趣的,跟大家分享一下. 给定任意日期对该日期进行加减天数,最后得出加减后出现的日期.以及给两个日期你可以得出他们两个之间相隔多少天.(需要考虑闰年,每个月天数不同,我们需要写一个我们直接可以使用的日期加减器)因为时间比较仓促,我也没有写界面,只有其中几个主要的函数的架构思想以及简单的调试就发出来了.

代码实现:

?
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
#include<iostream>
#include<Windows.h>
#include<assert.h>
using namespace std;
 
class Date
{
 
public:
 
  Date(int year = 1997,int month = 1,int day = 1)
  :years(year)
  , months(month)
  , days(day)
  {
    assert(IScorrect());
  }
 
  Date& operator=(const Date& d)
  {
    if (this != &d)
    {
      years = d.years;
      months = d.months;
      days = d.days;
    }
    return *this;
  }
 
  Date& operator + (int day)
  {
    while (day > 365)
    {
      if (ISleapyear() && day > 366)
      {
        years++;
        day = day - 366;
      }
      else
      {
        years++;
        day = day - 365;
      }
    }
    while (day >= Getmonthsday())
    {  
      //注意这里的次序问题,一定先减 再加 最后再判断. 如果顺序错了会出BUG的.
      day = day - Getmonthsday(); 
      months++;
      if (months > 12)
      {
        years++;
        months = 1;
      }
    }
 
    while (day > 0)
    {  
      DateAdvance();
      day = day - 1;
      days++;
    }
    return *this;
  }
 
  Date& operator - (int day) //先减去一年,然后在使用加的重载,所以你只需要写一个无懈可击的加算法就够了.
  {
    while (day > 365)
    {
      if (ISleapyear() && day > 366)
      {      
        day = day - 366;
        years--;
      }
      else
      {
        day = day - 365;
        years--;
      }
    }
    if (ISleapyear())
    {
      day = 366 - day;
      years--;
    }
    else
    {
      day = 365 - day;
      years--;
    }
    operator+(day);
    return *this;
  }
 
  void DateAdvance() //用于出现可以进化的情况
  {
    if (days > Getmonthsday())
    {
      months++;
      days = 1;
    }
    if (months > 12)
    {
      years++;
      months = 1;
    }
  }
   
  int operator - (Date D)
  {
    int count = 0;
    if (*this > D)
    {
      while (*this != D)
      {
        D.operator+(1);
        count++;
      }
    }
    else
    {
      while (*this != D)
      {
        operator+(1);
        count++;
      }
    }
    return count;
  }
 
  bool ISleapyear()
  {
    if ((years % 4 == 0 && years % 100 != 0) || (years % 400 == 0))
    {
      return true;
    }
    return false;
  }
  int Getmonthsday()
  {
    int monthDays[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
    if (ISleapyear() && months == 2)
    {
      return 29;
    }
    return monthDays[months];
  }
 
  void print()
  {
    cout << "目前的时间为";
    cout << years << "." << months << "." <<days<< endl;
  }
 
  bool IScorrect()
  {
    if (years > 0 && ((years % 4 == 0 && years % 100 != 0) || (years % 400 == 0)) && days < 367)//闰年
    {
      if (months >0 && months < 13)
      {
        if (days > 0 && days <= Getmonthsday())
        {
          return true;
        }
      }
    }
    else if (years >0 && days < 366) //非闰年
    {
      if (months >0 && months < 13)
      {
        if (days > 0 && days <= Getmonthsday())
        {
          return true;
        }
      }
    }
    return false;
  }
 
  Date operator += (int day)
  {
    *this = *this + 100;
    return *this;
  }
  Date operator -= (int day)
  {
    return *this = *this - day;
  }
  inline Date& operator++()
  {
    *this += 1;
    return *this;
  }
  inline Date operator++(int)
  {
    Date tmp(*this);
    *this = *this + 1;
    return tmp;
  }
 
  bool operator == (const Date& d)
  {
    return (years == d.years&& months == d.months&&days == d.days);
  }
 
  bool operator != (const Date& d)
  {
    return !(*this == d);
  }
 
  bool operator >(const Date& d)
  {
    if (years > d.years ||
      (years == d.years&&months > d.months)
      || (years == d.years&&months == d.months && days > d.days))
    {
      return true;
    }
    return false;
  }
 
  bool operator < (const Date& d)
  {
    return !(*this > d);
  }
 
  bool operator >= (const Date& d)
  {
    return (*this == d) && (*this > d);
  }
 
  bool operator <= (const Date& d)
  {
    return (*this == d) && (*this < d);
  }
 
private:
  int years;
  int months;
  int days;
};
 
void Test()
{
  Date d1(2012, 4, 5);
  Date d2(2013, 4, 5);
  d1.print();
  /*d1 = d1 - 400;*/
  d1.print();
  cout << d1 - d2 << endl;
  d1.print();
  system("pause");
}

总结:

日期类对我们掌握面向对象这里还是一个蛮重要的知识,你至少要能很熟练很正确地自己快速写出这个整个框架,然后一个一个实现函数,我只能说很重要,很重要,很重要大家一定要掌握.

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/dawn_sf/article/details/77884846?utm_source=tuicool&utm_medium=referral