【C++】类与对象(日期计算器)

简介: 【C++】类与对象(日期计算器)

头文件

#include<assert.h>
using namespace std;

class Date
{
public:
    bool CheckInvalid() const;
    Date(int year = 1, int month = 1, int day = 1);
    bool operator<(const Date& d) const;
    bool operator<=(const Date& d) const;
    bool operator>(const Date& d) const;
    bool operator>=(const Date& d) const;
    bool operator==(const Date& d) const;
    bool operator!=(const Date& d) const;

    Date& operator+=(int day);
    Date operator+(int day) const;

    Date operator-(int day) const;
    Date& operator-=(int day);

    //++d1
    Date& operator++();

    //为了跟前置++区分,强行增加一个int形参,构成重载区分
    //d1++
    Date operator++(int);

    //日期-日期
    int operator-(const Date& d) const;

    //如果不声明和定义分离,本质就是内联
    int GetMonthDay(int year, int month) const
    {
        assert(month > 0 && month < 13);
        static int monthDays[13] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };  //因为要经常调用,所以可以设为静态的
        if ( month == 2&&((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) )
        {
            return 29;
        }

        return monthDays[month];
    }

    void Print() const
    {
        cout << _year << "/" << _month << "/" << _day << endl;
    }

    //void operator<<(ostream& out)
    //{
    //    out << _year << "年" << _month << "月" << _day << "日" << endl;
    //}

    //友元声明
    friend ostream& operator<<(ostream& out, const Date& d);
    friend istream& operator>>(istream& in, Date& d);

private:
    int _year;
    int _month;
    int _day;
};

ostream& operator<<(ostream& out, const Date& d);
istream& operator>>(istream& in,  Date& d);

声明流插入<<和流提取>>时,应在类外面声明,不然this指针会占据第一个形参,Date就只能是左操作数了,打印时就会变成d1<<cout; ,不符合常规写法。在类外面声明时,为了不把private打开,可以进行友元声明,就可以在不打开private的情况下,访问private。

函数实现


Date::Date(int year , int month, int day )
{
    _year = year;
    _month = month;
    _day = day;

    if (!CheckInvalid())
    {
        cout << "构造日期非法" << endl;
    }
}

bool Date::operator<(const Date& d) const
{
    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 Date::operator<=(const Date& d) const
{
    return *this < d || *this == d;
}

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

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

bool Date::operator==(const Date& d) const
{
    return _year == d._year
        && _month == d._month
        && _day == d._day;
}
bool Date::operator!=(const Date& d) const
{
    return !(*this == d);
}

Date& Date::operator+=(int day)
{
    _day += day;
    while (_day > GetMonthDay(_year, _month))
    {
        _day -= GetMonthDay(_year, _month);
        ++_month;
        if (_month == 13)
        {
            ++_year;
            _month = 1;
        }
    }
    return *this;//可以用引用返回,出了作用域还在
}

Date Date::operator+(int day) const
{
    //Date tmp(*this);
    Date tmp = *this;  //拷贝构造
    tmp += day;

    return tmp;
}



//Date Date::operator+(int day)
//{
//    //Date tmp(*this);
//    Date tmp = *this;  //拷贝构造
//
//    tmp._day += day;
//    while (tmp._day > GetMonthDay(tmp._year, tmp._month)) 
//    {
//        tmp._day -= GetMonthDay(tmp._year, tmp._month); 
//        ++tmp._month; 
//        if (tmp._month == 13) 
//        { 
//            ++tmp._year; 
//            tmp._month = 1; 
//        }
//    }
//    return tmp;  //不能用引用返回,因为他是局部对象,出了作用域就不在了
//}
//
//
//Date& Date::operator+=(int day)
//{
//    *this = *this + day;
//    return *this;
//}

Date Date::operator-(int day) const
{
    Date tmp = *this;
    tmp -= day;
    return tmp;
}

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

//++d  ->d.operator++()  编译器自动转换
Date& Date::operator++()
{
    *this += 1;
    return *this;
}

//d++  ->d.operator(0)   C++规定:后置++重载时多增加一个int类型的参数,但调用函数时该参数不用传递,编译器自动传递
Date Date::operator++(int)  //规定只能是int,形参名字可以不写
{
    Date tmp = *this;
    *this += 1;
    return tmp;
}

int Date::operator-(const Date& d) const
{
    int flag = 1;
    Date max = *this;
    Date min = d;

    if (*this < d)
    {
        int flag = -1;
        max = d;
        min = *this;
    }

    int n = 0;
    while (min != max)
    {
        ++min;
        ++n;
    }
    return n * flag;
}

bool Date::CheckInvalid() const
{
    if (_year <= 0
        || _month < 1 || _month>12
        || _day<1 || _day>GetMonthDay(_year, _month))
    {
        return false;
    }
    else
    {
        return true;
    }
}

ostream& operator<<(ostream& out, const Date& d)
{
    out << d._year << "年" << d._month << "月" << d._day << "日" << endl;
    return out;
}

istream& operator>>(istream& in, Date& d)
{
    while (1)
    {
        cout << "请输入年月日:" << endl;
        in >> d._year >> d._month >> d._day;

        if (!d.CheckInvalid())
        {
            cout << "输入了无效日期,请重新输入" << endl;
        }
        else
        {
            break;
        }    
    }
    return in;
}

上方实现时,有日期+天数和日期+=天数。二者实现其中一个即可复用另一个。但是要先实现哪一个更好呢?

image.png

目录
相关文章
|
4天前
|
存储 编译器 C语言
【c++丨STL】string类的使用
本文介绍了C++中`string`类的基本概念及其主要接口。`string`类在C++标准库中扮演着重要角色,它提供了比C语言中字符串处理函数更丰富、安全和便捷的功能。文章详细讲解了`string`类的构造函数、赋值运算符、容量管理接口、元素访问及遍历方法、字符串修改操作、字符串运算接口、常量成员和非成员函数等内容。通过实例演示了如何使用这些接口进行字符串的创建、修改、查找和比较等操作,帮助读者更好地理解和掌握`string`类的应用。
18 2
|
10天前
|
存储 编译器 C++
【c++】类和对象(下)(取地址运算符重载、深究构造函数、类型转换、static修饰成员、友元、内部类、匿名对象)
本文介绍了C++中类和对象的高级特性,包括取地址运算符重载、构造函数的初始化列表、类型转换、static修饰成员、友元、内部类及匿名对象等内容。文章详细解释了每个概念的使用方法和注意事项,帮助读者深入了解C++面向对象编程的核心机制。
36 5
|
16天前
|
存储 编译器 C++
【c++】类和对象(中)(构造函数、析构函数、拷贝构造、赋值重载)
本文深入探讨了C++类的默认成员函数,包括构造函数、析构函数、拷贝构造函数和赋值重载。构造函数用于对象的初始化,析构函数用于对象销毁时的资源清理,拷贝构造函数用于对象的拷贝,赋值重载用于已存在对象的赋值。文章详细介绍了每个函数的特点、使用方法及注意事项,并提供了代码示例。这些默认成员函数确保了资源的正确管理和对象状态的维护。
47 4
|
17天前
|
存储 编译器 Linux
【c++】类和对象(上)(类的定义格式、访问限定符、类域、类的实例化、对象的内存大小、this指针)
本文介绍了C++中的类和对象,包括类的概念、定义格式、访问限定符、类域、对象的创建及内存大小、以及this指针。通过示例代码详细解释了类的定义、成员函数和成员变量的作用,以及如何使用访问限定符控制成员的访问权限。此外,还讨论了对象的内存分配规则和this指针的使用场景,帮助读者深入理解面向对象编程的核心概念。
44 4
|
2月前
|
存储 编译器 对象存储
【C++打怪之路Lv5】-- 类和对象(下)
【C++打怪之路Lv5】-- 类和对象(下)
28 4
|
2月前
|
编译器 C语言 C++
【C++打怪之路Lv4】-- 类和对象(中)
【C++打怪之路Lv4】-- 类和对象(中)
25 4
|
2月前
|
存储 安全 C++
【C++打怪之路Lv8】-- string类
【C++打怪之路Lv8】-- string类
22 1
|
2月前
|
存储 编译器 C++
【C++类和对象(下)】——我与C++的不解之缘(五)
【C++类和对象(下)】——我与C++的不解之缘(五)
|
2月前
|
编译器 C++
【C++类和对象(中)】—— 我与C++的不解之缘(四)
【C++类和对象(中)】—— 我与C++的不解之缘(四)
|
2月前
|
C++
C++番外篇——对于继承中子类与父类对象同时定义其析构顺序的探究
C++番外篇——对于继承中子类与父类对象同时定义其析构顺序的探究
54 1