欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

C++類和對(duì)象實(shí)戰(zhàn)之Date類的實(shí)現(xiàn)方法

 更新時(shí)間:2021年12月12日 12:41:10   作者:可口也可樂、  
C++ 標(biāo)準(zhǔn)庫沒有提供所謂的日期類型,C++ 繼承了C語言用于日期和時(shí)間操作的結(jié)構(gòu)和函數(shù),這篇文章主要給大家介紹了C++類和對(duì)象實(shí)戰(zhàn)之Date類的實(shí)現(xiàn)方法,需要的朋友可以參考下

零、前言

在學(xué)了C++類和對(duì)象基本知識(shí)以及六個(gè)默認(rèn)成員函數(shù)后,我們可以上手實(shí)現(xiàn)一個(gè)Date類出來,檢驗(yàn)學(xué)習(xí)的效果。

一、Date類相關(guān)接口

接口展示:

class Date
{ 
	//輸出操作符重載
	friend ostream& operator<<(ostream& _cout, const Date& d);
	//輸出操作符重載
	friend istream& operator>>(istream& _cin, Date& d);

public:
    // 獲取某年某月的天數(shù)
    int GetMonthDay(int year, int month);

    // 全缺省的構(gòu)造函數(shù)
    Date(int year=1988, int month=1, int day=1);

    // 拷貝構(gòu)造函數(shù)
    Date(const Date& d);

    // 賦值運(yùn)算符重載
    Date& operator=(const Date& d);

    // 日期+=天數(shù)
    Date& operator+=(int day);

    // 日期+天數(shù)
    Date operator+(int day);

    // 日期-天數(shù)
    Date operator-(int day);

    // 日期-=天數(shù)
    Date& operator-=(int day);

    // 前置++
    Date& operator++();

    // 后置++
    Date& operator++(int);

    // 后置--
    Date& operator--(int);

    // 前置--
    Date& operator--();

    // >運(yùn)算符重載
    bool operator>(const Date& d);

    // ==運(yùn)算符重載
    bool operator==(const Date& d);

    // >=運(yùn)算符重載
    bool operator>=(const Date& d);

    // <運(yùn)算符重載
    bool operator<(const Date& d);

    // <=運(yùn)算符重載
    bool operator<=(const Date& d);

    // !=運(yùn)算符重載
    bool operator!=(const Date& d);

    // 日期-日期 返回兩個(gè)日期之間相隔的具體天數(shù)
    int operator-(const Date& d);

    //日期展示
    void print()
    {
        cout << _year << " " << _month << " " << _day << endl;  
    }
private:
    int _year;
    int _month;
    int _day;
};

二、具體接口函數(shù)實(shí)現(xiàn)

注意:

因?yàn)閷?duì)于定義在類里面的函數(shù)會(huì)自動(dòng)設(shè)成內(nèi)聯(lián)函數(shù),而只有一些簡(jiǎn)單的函數(shù)才建議設(shè)成內(nèi)聯(lián)函數(shù),所以實(shí)現(xiàn)函數(shù)時(shí)我們是聲明和定義分離(在類里面聲明,類外定義)

在類外實(shí)現(xiàn)函數(shù)接口需要加上類域名稱

1、獲取月份天數(shù)

注意:

閏年二月與平年二月的天數(shù)不同

實(shí)現(xiàn)代碼:

//獲取月份天數(shù)
int Date::GetMonthDay(int year, int month)
{
	//設(shè)置平年月天數(shù)數(shù)組
	static int monthdays[] = { 0,31,28,31,30,31,30,31,31,30,31,30,31 };//設(shè)置成靜態(tài)避免重復(fù)創(chuàng)建
	int day = monthdays[month];
	//對(duì)閏年二月的處理
	if (month == 2 && ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0))
	{
		day = 29;
	}
	return day;
}

2、Date打印

注:打印函數(shù)比較簡(jiǎn)單,設(shè)成內(nèi)聯(lián)函數(shù)很適合,可以直接在類里定義

實(shí)現(xiàn)代碼:

void Date::Print()
{
	cout << _year << "年" << _month << "月" << _day << "日" << endl;
}

3、Date構(gòu)造函數(shù)

注意:

對(duì)于構(gòu)造函數(shù)建議寫成全缺省函數(shù)(便于無參數(shù)初始化),但是只能定義和聲明其中一個(gè)寫缺省

考慮初始化的日期是否合理

實(shí)現(xiàn)代碼:

//構(gòu)造函數(shù)
//類里聲明
Date(int year = 0, int month = 1, int day = 1);
//定義
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
	{
		// 嚴(yán)格來說拋異常更好
		cout << "非法日期" << endl;
		cout << year << "年" << month << "月" << day << "日" << endl;
		exit(-1);
	}
}

4、Date析構(gòu)函數(shù)

注:對(duì)于像Date一樣的類來說,析構(gòu)函數(shù)(沒有需要清理的空間資源),拷貝函數(shù)和賦值重載函數(shù)(能夠完成成員變量淺拷貝)都不用自己寫,編譯器默認(rèn)生成的已經(jīng)足夠使用

實(shí)現(xiàn)代碼:

//析構(gòu)函數(shù)
Date::~Date()
{
	_year = 1;
	_month = 0;
	_day = 0;
}

5、Date拷貝構(gòu)造函數(shù)

實(shí)現(xiàn)代碼:

//拷貝構(gòu)造
Date::Date(const Date& d)
{
	_year = d._year;
	_month = d._month;
	_day= d._day;
}

6、Date賦值重載函數(shù)

注意:

對(duì)于賦值操作符來說,是需要能支持連續(xù)賦值的操作,這里我們返回Date本身來進(jìn)行接下來的繼續(xù)賦值

實(shí)現(xiàn)代碼:

//賦值運(yùn)算符重載
Date& Date::operator=(const Date& d)
{
	_year = d._year;
	_month = d._month;
	_day = d._day;
	return *this;
}

效果圖:

7、Date+=天數(shù)

注意:

  1. +=表示會(huì)修改Date本身的數(shù)據(jù)
  2. 處理傳入負(fù)數(shù)天數(shù)
  3. 處理好天數(shù)進(jìn)位,月份進(jìn)位

實(shí)現(xiàn)代碼:

//日期+=天數(shù)
Date& Date::operator+=(int day)
{
	if (day < 0)//處理特殊情況
	{
		*this -= -day;//復(fù)用Date-=天數(shù)
	}
	else
	{
		_day += day;
		while (_day > GetMonthDay(_year, _month))//處理數(shù)據(jù)合理性
		{
			_day -= GetMonthDay(_year, _month);
			_month++;
			if (_month > 12)
			{
   			_year++;
				_month = 1;
			}
		}
	}
	return *this;//返回引用,即對(duì)象本身
}

8、Date+天數(shù)

注意:

+天數(shù)表示不會(huì)修改Date本身的數(shù)據(jù)(使用const修飾,避免修改)

邏輯與Date+=天數(shù)基本一致,可以進(jìn)行復(fù)用

實(shí)現(xiàn)代碼:

Date Date::operator+(int day) const
{
	Date tmp = *this;//賦值重載
	tmp += day;//復(fù)用+=重載
	return tmp;//返回值(拷貝構(gòu)造)
}

9、Date-=天數(shù)

注意:

  1. +=表示會(huì)修改Date本身的數(shù)據(jù)
  2. 處理傳入負(fù)數(shù)天數(shù)
  3. 考慮日期的借位,月份的借位

實(shí)現(xiàn)代碼:

//日期-=天數(shù)
Date& Date::operator-=(int day)
{
	if (day < 0)
	{
		*this += -day;//復(fù)用Date+=天數(shù)
	}
	else
	{
		_day -= day;
		while (_day <= 0)//處理數(shù)據(jù)合理性
		{
			_month--;
			if (_month <= 0)
			{
				_year--;
				_month = 12;
			}
			_day += GetMonthDay(_year, _month);
		}
	}
	return *this;
}

10、Date-天數(shù)

注意:

  1. -天數(shù)不會(huì)修改Date本身的數(shù)據(jù)(使用const修飾,避免修改)
  2. 邏輯與Date-=天數(shù)基本一致,可以進(jìn)行復(fù)用

實(shí)現(xiàn)代碼:

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

11、++Date

注意:

前置++表示,Date先增后使用

實(shí)現(xiàn)代碼:

//++Date
Date& Date::operator++()
{
	*this += 1;//復(fù)用Date+=天數(shù)
	return *this;
}

12、Date++

注意:

語法規(guī)定,因?yàn)榕c前置命名相同的緣故,這里的后置函數(shù)多一個(gè)參數(shù)來與前置函數(shù)形成重載

后置++表示先使用后自增

實(shí)現(xiàn)代碼:

//Date++
Date Date::operator++(int)
{
	Date tmp = *this;//保存一份日期
	*this += 1;//自增當(dāng)前日期
	return tmp;//返回自增前的日期
}

13、–Date

實(shí)現(xiàn)代碼:

//--Date
Date& Date::operator--()
{
	*this -= 1;
	return *this;
}

14、Date–

實(shí)現(xiàn)代碼:

//Date--
Date Date::operator--(int)
{
	Date tmp = *this;
	*this -= 1;
	return tmp;
}

15、日期比較

注:可以多次復(fù)用

實(shí)現(xiàn)代碼:

//日期比較
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 _year == d._year && _month == d._month && _day == d._day;
}

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

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);
}

16、Date相減

實(shí)現(xiàn)代碼:

 //日期減日期
 int Date::operator-(const Date& d) const
 {
 	//確定日期的大小
 	Date max = *this;
 	Date min = d;
 	if (*this < d)//復(fù)用日期比較
 	{
 		max = d;
 		min = *this;
 	}
 	int day = 0;
 	while (max != min)
 	{
 		++min;
 		++day;
 	}
 	return day;
 }

17、日期輸入\日期輸出

注意:

  1. 對(duì)于輸入操作符,我們習(xí)慣是cin>>date,而這樣的用法表示做操作數(shù)是cin,右操作數(shù)為日期對(duì)象,但是對(duì)于類成員函數(shù)來說,存在著隱含參數(shù)this指針(占據(jù)和第一個(gè)參數(shù)位置,即日期對(duì)象是左操作數(shù))
  2. 雖然定義成類外函數(shù)能修改參數(shù)位置,但是無法訪問類里的私有成員變量,這里我們使用友元函數(shù)來解決,即在類里聲明函數(shù)前加上friend,便可以訪問成員

實(shí)現(xiàn)代碼:

//輸出操作符重載
ostream& operator<<(ostream& _cout, const Date& d)
{
	_cout << d._year << "年" << d._month << "月" << d._day << "日" ;
	return _cout;
}
//輸出操作符重載
istream& operator>>(istream& _cin, Date& d)
> {
	_cin >> d._year >> d._month >> d._day;
	return _cin;
}

效果圖:

  1. date,而這樣的用法表示做操作數(shù)是cin,右操作數(shù)為日期對(duì)象,但是對(duì)于類成員函數(shù)來說,存在著隱含參數(shù)this指針(占據(jù)和第一個(gè)參數(shù)位置,即日期對(duì)象是左操作數(shù))
  2. 雖然定義成類外函數(shù)能修改參數(shù)位置,但是無法訪問類里的私有成員變量,這里我們使用友元函數(shù)來解決,即在類里聲明函數(shù)前加上friend,便可以訪問成員

實(shí)現(xiàn)代碼:

//輸出操作符重載
ostream& operator<<(ostream& _cout, const Date& d)
{
	_cout << d._year << "年" << d._month << "月" << d._day << "日" ;
	return _cout;
}
//輸出操作符重載
istream& operator>>(istream& _cin, Date& d)
{
	_cin >> d._year >> d._month >> d._day;
	return _cin;
}

效果圖:

總結(jié)

到此這篇關(guān)于C++類和對(duì)象實(shí)戰(zhàn)之Date類實(shí)現(xiàn)的文章就介紹到這了,更多相關(guān)C++?Date類的實(shí)現(xiàn)內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • java實(shí)現(xiàn)任意四則運(yùn)算表達(dá)式求值算法

    java實(shí)現(xiàn)任意四則運(yùn)算表達(dá)式求值算法

    這篇文章主要介紹了java實(shí)現(xiàn)任意四則運(yùn)算表達(dá)式求值算法,實(shí)例分析了基于java實(shí)現(xiàn)表達(dá)式四則運(yùn)算求值的原理與技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2015-04-04
  • 解決VC++編譯報(bào)錯(cuò)error C2248的方案

    解決VC++編譯報(bào)錯(cuò)error C2248的方案

    這篇文章主要介紹了解決VC++編譯報(bào)錯(cuò)error C2248的方案的相關(guān)資料,需要的朋友可以參考下
    2015-11-11
  • 詳解C語言結(jié)構(gòu)體中的函數(shù)指針

    詳解C語言結(jié)構(gòu)體中的函數(shù)指針

    這篇文章主要介紹了詳解C語言結(jié)構(gòu)體中的函數(shù)指針,文中對(duì)函數(shù)指針的基本概念也有講解,需要的朋友可以參考下
    2016-04-04
  • C語言文件打開的模式

    C語言文件打開的模式

    這篇文章主要介紹了C語言文件打開的模式,以及相關(guān)的原理和知識(shí)點(diǎn)做了分享,有興趣的朋友參考學(xué)習(xí)下。
    2018-03-03
  • Qt中控件的函數(shù)使用教程分享

    Qt中控件的函數(shù)使用教程分享

    這篇文章主要為大家詳細(xì)介紹了Qt中部分控件(Text Edit編輯框、Combo Box下拉框、List Wiget和Label)函數(shù)的使用,感興趣的小伙伴可以了解一下
    2022-12-12
  • C++實(shí)現(xiàn)鬧鐘程序的方法

    C++實(shí)現(xiàn)鬧鐘程序的方法

    這篇文章主要介紹了C++實(shí)現(xiàn)鬧鐘程序的方法,比較實(shí)用的功能,需要的朋友可以參考下
    2014-08-08
  • C語言之單鏈表的插入、刪除與查找

    C語言之單鏈表的插入、刪除與查找

    本篇文章主要介紹了從單鏈表的創(chuàng)建、遍歷到節(jié)點(diǎn)的插入、刪除與查找功能的實(shí)現(xiàn),有需要的朋友可以參考下
    2015-07-07
  • OpenCV實(shí)現(xiàn)更改圖片顏色功能

    OpenCV實(shí)現(xiàn)更改圖片顏色功能

    這篇文章主要為大家詳細(xì)介紹了如何利用OpenCV實(shí)現(xiàn)更改圖片顏色的功能,文中代碼介紹詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2022-05-05
  • C語言的字符串函數(shù),內(nèi)存函數(shù)筆記詳解

    C語言的字符串函數(shù),內(nèi)存函數(shù)筆記詳解

    這篇文章主要給大家介紹了關(guān)于C語言字符串/內(nèi)存的相關(guān)函數(shù),文中通過示例代碼總結(jié)的非常詳細(xì),對(duì)大家學(xué)習(xí)或者使用C語言具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面來一起學(xué)習(xí)學(xué)習(xí)吧
    2021-09-09
  • Qt 儀表盤的實(shí)現(xiàn)示例

    Qt 儀表盤的實(shí)現(xiàn)示例

    儀表盤在很多汽車和物聯(lián)網(wǎng)相關(guān)的系統(tǒng)中很常用,本文就來介紹一下Qt 儀表盤的實(shí)現(xiàn)示例,文中通過示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2021-12-12

最新評(píng)論