溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

【C++】日期類+日期萬年歷+日期計算器

發(fā)布時間:2020-07-03 18:55:53 來源:網(wǎng)絡(luò) 閱讀:1113 作者:安下 欄目:編程語言

    對于日期類,我們主要實現(xiàn)一下日期類的基本函數(shù),構(gòu)造,拷貝構(gòu)造,運算符的重載,析構(gòu)。當然這里運算符的重載需要實現(xiàn)的還是挺多的,如:=、<、>、<=、>=、等

#include <iostream>
using namespace std;

class Date
{
public:
    Date(int year = 1990, int month = 1, int day = 1)
    {
        _year = year;
        _month = month;
        _day = day;
    }

    Date(const Date& d)
    {
        _year = d._year;
        _month = d._month;
        _day = d._day;
    }

    ~Date()
    {}

    //萬年歷
    bool operator == (const Date& d)
    {
        return this->_year == d._year
            && this->_month == d._month
            && this->_day == d._day;
    }

    bool operator <(const Date& d)
    {
        if (_year<d._year)
        {
            return true;
        }
        else
        {
            if (_year == d._year)
            {
                if (_month < d._month)
                {
                    return true;
                }
                else
                {
                    if (_month == d._month)
                    {
                        if (_day < d._day)
                        {
                            return true;
                        }
                    }
                }
            }
        }
        return false;
    }

    bool operator <=(const Date& d)
    {
        return !(*this > d);
    }

    bool operator >(const Date& d)
    {
        if (_year>d._year)
        {
            return true;
        }
        else
        {
            if (_year == d._year)
            {
                if (_month > d._month)
                {
                    return true;
                }
                else
                {
                    if (_month == d._month)
                    {
                        if (_day > d._day)
                        {
                            return true;
                        }
                    }
                }
            }
        }
        return false;
    }
    bool operator >=(const Date& d)
    {
        return !(*this < d);
    }

    

    對于實現(xiàn)日期計算器,我們主要考慮的是加天數(shù)和減天數(shù),那么問題就來了,對于加法,如果加的日期超過當前月的天數(shù)就需要考慮月的進位,對于年來說,如果月份大于12就需要重置為1,年進位。還需要考慮的一個問題就是,是否為閏年的2月份天數(shù)不同,那么應(yīng)該如何解決呢?我們用一個數(shù)組把每個月的天數(shù)給保存起來,然后寫一個判斷閏年的函數(shù),如果是閏年就在數(shù)組對應(yīng)的2月上加上1天。對于減法,就相當于加上一個負天數(shù),問題和加法一樣。

// 日期計算器
    Date operator+ (int day);
    Date operator+= (int day);

    Date operator- (int day)
    {
        this->_day -= day;
        while (_day < 0)
        {
            _day += GetMonthDay(2016, 3);
            _month -= 1;
            if (_month < 1)
            {
                _month = 12;
                _year -= 1;
            }
        }
        return *this;
    }
    Date operator-= (int day);

    Date operator++();
    Date operator++(int);

    Date operator--();
    Date operator--(int);

    int operator-(const Date& d);

    //計算器
    Date& calendar(int day = 0)
    {
        if (day > 0)//加正天數(shù)
        {

            this->_day += day;

            while (_day > GetMonthDay(2016, 2))
            {
                _day -= GetMonthDay(2016, 2);
                _month += 1;
                if (_month > 12)
                {
                    _month = 1;
                    _year += 1;
                }
            }
        }
        else//加負天數(shù)
        {
            this->_day -= day;
            while (_day < 0)
            {
                _day += GetMonthDay(2016, 3);
                _month -= 1;
                if (_month < 1)
                {
                    _month = 12;
                    _year -= 1;
                }
            }
        }

        return *this;
    }

private:
    bool IsLeapYear(int year)
    {
        if (((year % 4 == 0) && (year % 100 != 0)) || (year % 400 == 0))
        {
            return true;
        }
        return false;
    }

    int GetMonthDay(int year, int month)
    {
        int monthArray[13] = { 0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };

        int day = monthArray[month];

        if (month == 2 && IsLeapYear(year))
        {
            day += 1;
        }

        return day;
    }

private:
    int _year;
    int _month;
    int _day;


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI