<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
#pragma once #include < iostream> using std::cout; using std::cin; using std::endl; class Date { public: // 獲取某年某月的天數 int GetMonthDay(int year, int month); // 全預設的建構函式 Date(int year = 0, int month = 1, int day = 1); void Print(); //解構,拷貝構造,賦值過載函數可以不用寫,預設生成的就夠用 //日期+=天數 Date& operator+=(int day); // 日+天數 Date operator+(int day); // 日期-天數 Date operator-(int day); // 日期-=天數 Date& operator-=(int day); // 前置++ Date& operator++(); // 後置++ Date operator++(int); //後置-- Date operator--(int); // 前置-- Date& operator--(); // >運運算元過載 bool operator>(const Date& d); // ==運運算元過載 bool operator==(const Date& d); // >=運運算元過載 bool operator >= (const Date& d); // <運運算元過載 bool operator < (const Date& d); // <=運運算元過載 bool operator <= (const Date& d); // !=運運算元過載 bool operator != (const Date& d); // 日期-日期 返回天數 int operator-(const Date& d); private: int _year; int _month; int _day; };
//因為閏年和平年二月份的天數不一樣,隨便加加減減會有問題,這個函數可以根據閏年和平年給出對應的天數 //因為後面需要頻繁呼叫它,設定成行內函式 inline int Date::GetMonthDay(int year, int month) { //設定成靜態變數,不用每次呼叫這個函數都開闢一個陣列 static int arr[13] = {0,31,28,31,30,31,30,31,31,30,31, 30, 31}; int day = arr[month]; if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0)) day = 29; return day; }
Date::Date(int year, int month, int day) { //防止給的日期有錯誤 if (year >= 0 && month > 0 && month < 13 && day >0 && day <= GetMonthDay(year, month)) { _year = year; _month = month; _day = day; } else { cout << "非法日期" << endl; cout << year << "年" << month << "月" << day << "日" << endl; } }
void Date::Print() { cout << _year << "年" << _month << "月" << _day << "日" << endl; }
Date& Date::operator+=(int day) { if (day < 0){ *this -= (-day); } else { _day += day; //如果天數大於月份對應的最大天數,就先減去這個月天數,然後月份++,然後再判斷月份對應的天數對不對,往復迴圈 while (_day > GetMonthDay(_year, _month)) { _day -= GetMonthDay(_year, _month); ++_month; if (_month > 12) { ++_year; _month = 1; } } //如果是傳值返回的話傳的是他的一個拷貝臨時變數,又需要呼叫拷貝建構函式,因為出了函數作用域物件還在,所以傳參照更好。 } return *this; }
Date Date::operator+(int day) { Date ret(*this); //複用operator+=函數 ret += day; //ret是一個區域性變數,出了作用域就銷燬了,傳不了參照 return ret; }
Date& Date::operator-=(int day) { if (day < 0) { *this += (-day); } else { _day -= day; while (_day <= 0) { --_month; if (_month < 1) { --_year; _month = 12; } _day += GetMonthDay(_year, _month); } } return *this; }
Date Date::operator-(int day) { Date ret = *this; ret -= day; return ret; }
//返回的是++後的值,可以複用+=函數,邏輯是一樣的,把day換成1即可 Date& Date::operator++() { *this += 1; return *this; }
//返回的是++前的值,不能傳參照返回 //為了和前置++賦值過載函數構成函數過載,需要加個int ,不需要傳實參,因為沒用,如果不加引數那麼前置++和後置++函數就一樣了,們在進行前置++或者後置++操作時,編譯器就不知道呼叫哪一個了 Date Date::operator++(int) { Date ret(*this); *this += 1; return ret; }
//返回原物件,然後物件再-- Date Date::operator--(int) { Date ret = *this; *this -= 1; return ret; }
返回--後的物件
Date& Date::operator--() { *this -= 1; return *this; }
d1 > d2 -> d1.operator>(&d1, d2) bool Date::operator>(const Date& d) { if (_year >= d._year) { if (_year > d._year) return true; else { if (_month >= d._month) { if (_month > d._month) return true; else { if (_day > d._day) return true; } } } } return false; }
bool Date::operator==(const Date& d) { return _year == d._year && _month == d._month && _day == d._day; }
bool Date::operator >= (const Date& d) { return *this > d || *this == d; }
bool Date::operator < (const Date& d) { return !(*this >= d); }
bool Date::operator <= (const Date& d) { return !(*this > d); }
bool Date::operator != (const Date& d) { return !(*this == d); }
int Date::operator-(const Date& d) { Date min = *this; Date max = d; int flag = -1; int daycount = 0; if (*this > d) { min = d; max = *this; flag = 1; } while (min != max) { ++min; daycount++; } return flag * daycount; }
到此這篇關於C++日期類(Date)實現的範例程式碼的文章就介紹到這了,更多相關C++日期類內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45