您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++日期類計(jì)算器怎么實(shí)現(xiàn)”,在日常操作中,相信很多人在C++日期類計(jì)算器怎么實(shí)現(xiàn)問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C++日期類計(jì)算器怎么實(shí)現(xiàn)”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
int GetMonthDay(int year, int month) { static int monthDayArray[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; } else { return monthDayArray[month]; } }
Date(int year = 1, int month = 1, int day = 1) { _year = year; _month = month; _day = day; //檢查日期是否合法 if (!((year >= 1) && (month >= 1 && month <= 12) && (day >= 1 && day <= GetMonthDay(year, month)))) { cout << "非法日期" << endl; } }
// 拷貝構(gòu)造函數(shù) 形參加const 防止寫反了 問(wèn)題就可以檢查出來(lái)了 Date(const Date& d) { _year = d._year; _month = d._month; _day = d._day; }
//d1 = d2 //注:1.要注意兩個(gè)參數(shù)的順序 2.這里面參數(shù)不加引用不會(huì)導(dǎo)致無(wú)窮遞歸 但為了避免拷貝構(gòu)造最好加引用 Date& operator=(const Date& d) { //為了支持鏈?zhǔn)劫x值 if是為了避免自己給自己賦值 d1 = d1 if (this != &d) { _year = d._year; _month = d._month; _day = d._day; } return *this; }
~Date()//可不寫 { ; }
日期類因?yàn)闆](méi)有申請(qǐng)資源,所以無(wú)需寫析構(gòu)函數(shù),編譯器默認(rèn)生成的析構(gòu)函數(shù)就可以。
//d1 += 100 //天滿了進(jìn)月 月滿了進(jìn)年 Date& operator+=(int day) { //避免 d1 += -1000的情形 if (day < 0) { return *this -= -day; } _day += day; while (_day > GetMonthDay(_year, _month)) { _day -= GetMonthDay(_year, _month); _month++; if (_month == 13) { ++_year; _month = 1; } } return *this; }
//d1 + 100 Date operator+(int day) const { Date ret(*this); ret += day;//ret.operator+=(day) return ret; }
//d1 - 100 Date operator-(int day) const { Date ret(*this); ret -= day; return ret; }
//d1 -= 100 Date& operator-=(int day) { //避免 d1 -= -1000 if (day < 0) { return *this += -day; } _day -= day; while (_day <= 0) { --_month; if (_month == 0) { --_year; _month = 12; } _day += GetMonthDay(_year, _month); } return *this; }
//前置++ Date& operator++() { //會(huì)調(diào)用 operator+=(int day) *this += 1; return *this; }
//后置++ —多一個(gè)int參數(shù)主要是為了和前置++進(jìn)行區(qū)分 構(gòu)成函數(shù)重載 Date operator++(int) { Date tmp(*this); *this += 1; return tmp; }
//前置-- Date& operator--() { //復(fù)用運(yùn)算符重載-= *this -= 1; return *this; }
//后置-- Date operator--(int) { Date tmp = *this; *this -= 1; return tmp; }
//d1 > d2 bool operator>(const Date& d) const { if (_year > d._year) { return true; } else if (_year == d._year && _month > d._month) { return true; } else if (_year == d._year && _month == d._month && _day > d._day) { return true; } return false; }
//d1 < d2 bool operator<(const Date& d) const { return !(*this >= d); }
//d1 == d2 bool operator==(const Date& d) const { return _year == d._year && _month == d._month && _day == d._day; }
//d1 >= d2 bool operator>=(const Date& d) const { return *this > d || *this == d; }
//d1 <= d2 bool operator<=(const Date& d) const { return !(*this > d); }
//d1 != d2 bool operator!=(const Date& d) const { return !(*this == d); }
//內(nèi)聯(lián)函數(shù)和靜態(tài)成員一樣 調(diào)用處展開 不進(jìn)符號(hào)表 inline ostream& operator<<(ostream& out, const Date& d) { out << d._year << "年" << d._month << "月" << d._day << "日" << endl; return out; }
//cin >> d1 編譯器轉(zhuǎn)化成operator(cin,d1) 形參中相比<< 去掉了const inline istream& operator>>(istream& in, Date& d) { in >> d._year >> d._month >> d._day; return in; }
//日期-日期 int operator-(const Date& d) const { Date max = *this; Date min = d; int flag = 1; if (*this < d) //總結(jié):凡是內(nèi)部不改變成員變量 也就是不改變*this數(shù)據(jù)的 這些成員函數(shù)都應(yīng)該加const //if (d > *this) { max = d; min = *this; flag = -1; } int n = 0; while (min != max) { ++n; //復(fù)用++ ++到和d1日期相等 就是相差多少天 ++min; } return n * flag; }
Date.h
#pragma once #include <iostream> using namespace std; class Date { //友元聲明(類的任意位置)聲明友元時(shí)可以不用加inline friend ostream& operator<<(ostream& out, const Date& d); friend istream& operator>>(istream& in, Date& d); public: int GetMonthDay(int year, int month) { static int monthDayArray[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; } else { return monthDayArray[month]; } } Date(int year = 1, int month = 1, int day = 1) { _year = year; _month = month; _day = day; //檢查日期是否合法 if (!((year >= 1) && (month >= 1 && month <= 12) && (day >= 1 && day <= GetMonthDay(year, month)))) { cout << "非法日期" << endl; } } // 拷貝構(gòu)造函數(shù) 形參加const 防止寫反了 問(wèn)題就可以檢查出來(lái)了 Date(const Date& d) { _year = d._year; _month = d._month; _day = d._day; } //d1 == d2 bool operator==(const Date& d) const; //d1 > d2 bool operator>(const Date& d) const; //d1 >= d2 bool operator>=(const Date& d) const; //d1 <= d2 bool operator<=(const Date& d) const; //d1 < d2 bool operator<(const Date& d) const; //d1 != d2 bool operator!=(const Date& d) const; //d1 += 100 Date& operator+=(int day); //d1 + 100 Date operator+(int day) const; //d1 = d2 注:1.要注意兩個(gè)參數(shù)的順序 2.這里面參數(shù)不加引用不會(huì)導(dǎo)致無(wú)窮遞歸 但為了避免拷貝構(gòu)造最好加引用 Date& operator=(const Date& d) { //為了支持鏈?zhǔn)劫x值 if是為了避免自己給自己賦值 d1 = d1 if (this != &d) { _year = d._year; _month = d._month; _day = d._day; } return *this; } //d1 -= 100 Date& operator-=(int day); //d1 - 100 Date operator-(int day) const; //++的操作數(shù)只有一個(gè) 不傳參 //前置++ Date& operator++(); //編譯器為了區(qū)分前置++和后置++ 規(guī)定在后置的函數(shù)上加了一個(gè)參數(shù) //后置++ Date operator++(int); //允許成員函數(shù)加const 此時(shí)this指針的類型為:const Date* const this void Print() const { cout << _year << "/" << _month << "/" << _day << endl; } //前置-- Date& operator--(); //后置-- Date operator--(int); //日期-日期 int operator-(const Date& d) const; //流插入 //d1 << cout編譯器會(huì)轉(zhuǎn)化成d1.operator<<(cout) this指針搶了左操作數(shù)d1的位置 //<<和>>的重載一般不寫成成員函數(shù) 因?yàn)閠his默認(rèn)搶了第一個(gè)參數(shù)的位置 Date類對(duì)象就是左操作數(shù) 不符合使用習(xí)慣和可讀性 /*void operator<<(ostream& out) { out << _year << "年" << _month << "月" << _day << "日" << endl; }*/ //取地址重載 Date* operator&() { return this; } //const成員取地址重載 const Date* operator&() const { return this; } //取地址重載和const成員取地址重載不實(shí)現(xiàn) 編譯器會(huì)默認(rèn)生成 private: int _year; int _month; int _day; }; //結(jié)論:對(duì)于自定義類型,盡量用前置,減少拷貝,提高效率 //全局函數(shù)調(diào)用:cout << d1轉(zhuǎn)化成operator<<(cout,d1) //全局函數(shù)的定義和全局變量不能放在.h文件中 因?yàn)楹瘮?shù)的定義在Date.cpp和test.cpp都會(huì)展開 函數(shù)地址進(jìn)入符號(hào)表 鏈接器鏈接兩個(gè).cpp文件時(shí)相同的函數(shù)地址會(huì)報(bào)錯(cuò) //解決方法:1.改成靜態(tài) 2.聲明和定義分離 //static修飾函數(shù)只在當(dāng)前文件可見 不會(huì)進(jìn)入符號(hào)表 //static void operator<<(ostream& out,const Date& d) //{ // out << d._year << "年" << d._month << "月" << d._day << "日" << endl; //} //ostream& operator<<(ostream& out, const Date& d); //內(nèi)聯(lián)函數(shù)和靜態(tài)成員一樣 調(diào)用處展開 不進(jìn)符號(hào)表 inline ostream& operator<<(ostream& out, const Date& d) { out << d._year << "年" << d._month << "月" << d._day << "日" << endl; return out; } //cin >> d1 編譯器轉(zhuǎn)化成operator(cin,d1) 形參中相比<< 去掉了const inline istream& operator>>(istream& in, Date& d) { in >> d._year >> d._month >> d._day; return in; }
Date.cpp
#include"Date.h" //d1 == d2 bool Date::operator==(const Date& d) const { return _year == d._year && _month == d._month && _day == d._day; } //d1 > d2 bool Date::operator>(const Date& d) const { if (_year > d._year) { return true; } else if (_year == d._year && _month > d._month) { return true; } else if (_year == d._year && _month == d._month && _day > d._day) { return true; } return false; } //d1 >= d2 bool Date::operator>=(const Date& d) const { return *this > d || *this == d; } //d1 <= d2 bool Date::operator<=(const Date& d) const { return !(*this > d); } //d1 < d2 bool Date::operator<(const Date& d) const { return !(*this >= d); } //d1 != d2 bool Date::operator!=(const Date& d) const { return !(*this == d); } //d1 += 100 //天滿了進(jìn)月 月滿了進(jìn)年 Date& Date::operator+=(int day) { //避免 d1 += -1000的情形 if (day < 0) { return *this -= -day; } _day += day; while (_day > GetMonthDay(_year, _month)) { _day -= GetMonthDay(_year, _month); _month++; if (_month == 13) { ++_year; _month = 1; } } return *this; } //d1 + 100 Date Date::operator+(int day) const { Date ret(*this); ret += day;//ret.operator+=(day) return ret; } //d1 -= 100 Date& Date::operator-=(int day) { //避免 d1 -= -1000 if (day < 0) { return *this += -day; } _day -= day; while (_day <= 0) { --_month; if (_month == 0) { --_year; _month = 12; } _day += GetMonthDay(_year, _month); } return *this; } //d1 - 100 Date Date::operator-(int day) const { Date ret(*this); ret -= day; return ret; } //前置++ Date& Date::operator++() { //會(huì)調(diào)用 operator+=(int day) *this += 1; return *this; } //后置++ —多一個(gè)int參數(shù)主要是為了和前置++進(jìn)行區(qū)分 構(gòu)成函數(shù)重載 Date Date::operator++(int) { Date tmp(*this); *this += 1; return tmp; } //前置-- Date& Date::operator--() { //復(fù)用運(yùn)算符重載-= *this -= 1; return *this; } //后置-- Date Date::operator--(int) { Date tmp = *this; *this -= 1; return tmp; } //日期-日期 int Date::operator-(const Date& d) const { Date max = *this; Date min = d; int flag = 1; if (*this < d) //總結(jié):凡是內(nèi)部不改變成員變量 也就是不改變*this數(shù)據(jù)的 這些成員函數(shù)都應(yīng)該加const //if (d > *this) { max = d; min = *this; flag = -1; } int n = 0; while (min != max) { ++n; //復(fù)用++ ++到和d1日期相等 就是相差多少天 ++min; } return n * flag; } //為了支持鏈?zhǔn)搅鞑迦?nbsp;cout<< d1 <<d2 返回cout類對(duì)象 //ostream& operator<<(ostream& out,const Date& d) //{ // out << d._year << "年" << d._month << "月" << d._day << "日" << endl; // return out; //}
到此,關(guān)于“C++日期類計(jì)算器怎么實(shí)現(xiàn)”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。