溫馨提示×

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

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

C++類中const修飾的成員函數(shù)及日期類怎么使用

發(fā)布時(shí)間:2023-01-30 09:18:23 來(lái)源:億速云 閱讀:146 作者:iii 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹“C++類中const修飾的成員函數(shù)及日期類怎么使用”,在日常操作中,相信很多人在C++類中const修飾的成員函數(shù)及日期類怎么使用問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C++類中const修飾的成員函數(shù)及日期類怎么使用”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

    一.const修飾類的成員函數(shù)

    1.問(wèn)題引出:

    給出一段簡(jiǎn)單的代碼

    代碼段:

    #include <iostream>
    using std::cin;
    using std::cout;
    using std::endl;
     
    class Date1
    {
    public:
    	Date1(int year = 2000)             類的全缺省構(gòu)造函數(shù)(可無(wú)參調(diào)用)
    	{
    		_year = year;
    	}
     
    	void Prin()
    	{
    		cout << "Print Date:" << _year << endl;
    	}
     
    private:
    	int _year;
    };
     
     
     
    int main()
    {
    	const Date1 a;                       定義一個(gè)const修飾的對(duì)象a(該對(duì)象只可讀,不可被寫(xiě)入)
    	a.Prin();
     
    	return 0;
    }

    該段程序會(huì)編譯報(bào)錯(cuò):

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    2.問(wèn)題分析

    上述代碼段出錯(cuò)的原因要從類的成員函數(shù)的隱含參數(shù)this指針出發(fā)進(jìn)行分析:

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    注意:

    • 由于a是const修飾的對(duì)象,因此&a 取出的是 const Date *類型的指針,該指針只可對(duì)a對(duì)象的內(nèi)存空間進(jìn)行讀取操作而不可進(jìn)行寫(xiě)入操作(該指針的權(quán)限為只可讀取不可寫(xiě)入)。

    • Prin函數(shù)的形參是Date * const this指針,該類型指針同時(shí)具有讀取和寫(xiě)入內(nèi)存空間的權(quán)限。

    • 將&a賦給Prin的形參this,就會(huì)使指針的讀寫(xiě)權(quán)限被放大,因此編譯無(wú)法通過(guò)(指針是靈活而危險(xiǎn)的存在,編譯器只允許其讀寫(xiě)權(quán)限被縮小而不允許其權(quán)限被放大)

    3.const修飾類的成員函數(shù) 

    我們知道類的每個(gè)成員函數(shù)都有一個(gè)隱含的this指針形參(類型為:類名*const this)。

    為了使被const修飾的對(duì)象(比如是上面代碼段中的a)可以調(diào)用其成員對(duì)象,C++規(guī)定可以用const來(lái)修飾類的成員函數(shù)。

    類中被const修飾的“成員函數(shù)”稱為const成員函數(shù),const修飾類成員函數(shù),本質(zhì)上修飾該成員函數(shù)隱含的this指針,表明在該成員函數(shù)中不能對(duì)類的任何成員變量進(jìn)行修改。(修飾后成員函數(shù)的this指針形參類型變?yōu)椋?span >const 類名* const this)

    比如:

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    const修飾的對(duì)象不可以調(diào)用非const修飾的成員函數(shù)(類指針傳參給this指針時(shí)讀寫(xiě)權(quán)限被放大):

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    非const修飾的對(duì)象可以調(diào)用const修飾的成員函數(shù)(類指針傳參給this指針時(shí)讀寫(xiě)權(quán)限被縮小):

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    const修飾的成員函數(shù)內(nèi)不可以調(diào)用其它的非const修飾的成員函數(shù)(this指針之間傳參時(shí)讀寫(xiě)權(quán)限被放大):

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    非const修飾的成員函數(shù)內(nèi)可以調(diào)用其它的const修飾的成員函數(shù)(this指針之間傳參時(shí)讀寫(xiě)權(quán)限被縮小):

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    當(dāng)類的成員函數(shù)中沒(méi)有對(duì)類的成員變量進(jìn)行任何形式的修改操作時(shí),該成員函數(shù)最好都用const來(lái)修飾(這樣安全同時(shí)又使得const修飾的對(duì)象可以調(diào)用該成員函數(shù))以保證代碼的健壯性。

    二. 類的兩個(gè)默認(rèn)的&運(yùn)算符重載

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    編譯器會(huì)默認(rèn)生成兩個(gè)類的&(取地址)重載用于類的取地址操作(如果我們自定義了類的取地址重載則編譯器便不會(huì)再生成默認(rèn)的)

    C++中,內(nèi)置運(yùn)算符若要直接作用于類對(duì)象則必須經(jīng)過(guò)重載。

    若想取到類對(duì)象的地址,我們可以對(duì)&運(yùn)算符進(jìn)行重載,比如:

    #include <iostream>
    using std::cin;
    using std::cout;
    using std::endl;
     
     
     
    class Date1
    {
    public:
        Date1(int year = 2000)
    	{
    		_year = year;
    	}
     
     
    	Date1* operator& ()               對(duì)&進(jìn)行重載用于非const修飾的對(duì)象的取地址
    	{
    		return this;
    	}
     
    	const Date1* operator&() const    對(duì)&進(jìn)行重載用于const修飾的對(duì)象的取地址
    	{
    		return this;
    	}
     
    private:
    	int _year;
    };
     
     
    int main()
    {
    	const Date1 a;                     定義一個(gè)const修飾的對(duì)象a(該對(duì)象只可讀,不可被寫(xiě)入)
        Date1 b;
     
    	cout << &a << endl;
    	cout << &b << endl;
     
    	return 0;
    }

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    C++類中const修飾的成員函數(shù)及日期類怎么使用

    這兩個(gè)默認(rèn)成員函數(shù)一般不用重新自定義 ,編譯器默認(rèn)會(huì)生成,編譯其默認(rèn)生成的&重載和上面我們自定義的成員函數(shù)應(yīng)該沒(méi)有什么區(qū)別(至少功能上沒(méi)區(qū)別)。

    三. 日期類小練習(xí) 

    日期類頭文件:

    為了提高代碼的可維護(hù)性和可讀性,將日期類的成員函數(shù)的聲明和定義分開(kāi)寫(xiě)。

    #pragma once
    #include <iostream>
    using std::cout;
    using std::cin;
    using std::endl;
     
    //記錄日期的類
    class Date        
    {
    public:
     
    	//Date的構(gòu)造函數(shù)
    	Date(int day=1, int month=1, int year=1);		
    	//獲取月份天數(shù)的方法
    	int GetMonthday(const int month) const;
    	//類對(duì)象的日期打印函數(shù)
    	void Print() const;
    	//判斷某個(gè)日期是星期幾,并打印出來(lái)
    	void GetWeekDay() const ;
     
     	//一組比較運(yùn)算符的重載
    	bool operator> (const Date& date)const;				
    	bool operator==(const Date& date)const;
    	//在邏輯上我們只需定義出大于(或小于)和等于的判斷函數(shù),剩余的判斷函數(shù)我們就可以通過(guò)復(fù)用的方    
        式簡(jiǎn)化代碼書(shū)寫(xiě)
    	bool operator<(const Date& date)const;
    	bool operator>=(const Date& date)const;
    	bool operator<=(const Date& date)const;
    	bool operator!=(const Date& date)const;
     
    	//一組日期+(-)整數(shù)的操作和+=(-=)整數(shù)的操作
    	Date operator+(const int day)const;
    	Date& operator+=(const int day);
    	Date operator-(const int day)const;
    	Date& operator-=(const int day);
    	Date& operator=(const Date& date);
    	
    	//一組前置++(--)和后置++(--)的重載
    	Date& operator++();								 //實(shí)現(xiàn)日期類的前置++
    	Date operator++(int);							 //實(shí)現(xiàn)日期類的后置++
    	Date& operator--();                              //實(shí)現(xiàn)日期類的前置--
    	Date operator--(int);                            //實(shí)現(xiàn)日期類的后置--
     
    	//實(shí)現(xiàn)時(shí)期相減的操作符重載
    	int operator-(const Date& date)const;
    	
    private:
    	int _day;
    	int _month;
    	int _year;
     
    };

    日期類的成員函數(shù)的實(shí)現(xiàn):

    #include "Date.h"
     
    //Date的構(gòu)造函數(shù)
    Date ::Date(int day, int month, int year)   
    {
    	_day = day;
    	_month = month;
    	_year = year;
    	if (_year <= 0 || _month <= 0 || _month > 12 || _day <= 0 || _day > GetMonthday(_month))
    	{
    		cout << "date invalued please exit the app" << endl;
    		exit(0);
    	}
    	
    }
    //獲取相應(yīng)月份天數(shù)的方法
    int Date::GetMonthday(const int month)const
    {
    	static const int arr[12] = { 31,28,31,30,31,30,31,31,30,31,30,31 };
    	int ret = arr[month - 1];
    	if (((0 == _year % 4 && 0 != _year % 100) || (0 == _year % 400)) && 2 == month)
    	{
    		ret++;
    	}
    	return ret;
    }
    //類對(duì)象的日期打印函數(shù)
    void Date::Print()const
    {
    	cout << _year << ' ' << _month << ' ' << _day << ' ' << endl;
    }
    //判斷某個(gè)日期是星期幾,并打印出來(lái)
    //注意this指針不能由用戶去傳
    void Date::GetWeekDay()const
    {
    	const char* arr[7] = { "星期一","星期二","星期三","星期四","星期五","星期六","星期日" };
    	const Date tem(1, 1, 1900);
    	const int subret = (*this)-tem;
    	printf("%s\n", arr[(subret % 7)]);
    }
     
    //將 > 運(yùn)算符進(jìn)行重載
    bool Date ::operator> (const Date& date)const
    {
    	if (_year > date._year)
    	{
    		return true;
    	}
    	else if (_year == date._year && _month > date._month)
    	{
    		return true;
    	}
    	else if (_year == date._year && _month == date._month && _day > date._day)
    	{
    		return true;
    	}
    	return false;
    }
    //將 =運(yùn)算符進(jìn)行重載
    bool Date:: operator==(const Date& date)const
    {
    	if (date._day == _day && date._month == _month && date._year == _year)
    	{
    		return true;
    	}
    	return false;
    }
    //在邏輯上我們只需定義出大于(或小于)和等于的判斷函數(shù),剩余的判斷函數(shù)我們就可以通過(guò)復(fù)用的方式簡(jiǎn)化代碼書(shū)寫(xiě)
    bool Date :: operator>= (const Date& date)const
    {
    	if ((*this) > date || (*this) == date)
    	{
    		return true;
    	}
    	return false;
    }
     
    bool Date :: operator < (const Date& date)const
    {
    	if ((*this) >= date)
    	{
    		return false;
    	}
    	return true;
    }
     
    bool Date :: operator<=(const Date& date)const
    {
    	if ((*this) > date)
    	{
    		return false;
    	}
    	return true;
    }
    bool Date:: operator!= (const Date& date)const
    {
    	if ((*this) == date)
    	{
    		return false;
    	}
    	return true;
    }
     
    //一組日期+(-)整數(shù)的操作和+=(-=)整數(shù)的操作
    Date& Date::operator+=(const int day)
    {
    	if (day < 0)
    	{
    		(*this) -= (-day);
    		return (*this);
    	}
    	_day += day;
    	while (_day > GetMonthday(_month))
    	{
    		if (_month < 12)
    		{
    			_day -= GetMonthday(_month);
    			_month++;
    		}
    		else
    		{
    			_day -= GetMonthday(_month);
    			_year++;
    			_month = 1;
    		}
    	}
    	return (*this);
    }
    Date Date::operator+(const int day)const
    {
    	Date tem(*this);
    	tem += day;
    	return tem;
    }
     
    Date& Date::operator-=(const int day)
    {
    	if (day < 0)
    	{
    		(*this) += (-day);
    		return (*this);
    	}
    	_day -= day;
    	while (_day <= 0 )
    	{
    		if (_month > 1)
    		{
    			_month--;
    			_day += GetMonthday(_month);
    		}
    		else
    		{
    			_year--;
    			_month = 12;
    			_day += GetMonthday(_month);
    		}
    	}
    	if (_year <= 0)
    	{
    		cout << "operation invalued" << endl;
    		exit(0);
    	}
    	return (*this);
    }
    Date Date::operator-(int day)const
    {
    	Date tem(*this);
    	tem -= (day);
    	return tem;
    }
    Date& Date ::operator=(const Date& date)
    {
    	if (this != &date)
    	{
    		_day = date._day;
    		_month = date._month;
    		_year = date._year;
    	}
     
    	return (*this);
    }
     
    //一組前置++(--)和后置++(--)的重載
    Date& Date ::operator++()             //實(shí)現(xiàn)日期類的前置++
    {
    	(*this) += 1;
    	return (*this);
    }
    Date Date ::operator++(int)           //實(shí)現(xiàn)日期類的后置++
    {
    	Date tem(*this);
    	(*this) += 1;
    	return tem;
    }
    Date& Date:: operator--()             //實(shí)現(xiàn)日期類的前置--
    {
    	(*this) -= 1;
    	return (*this);
    }
    Date Date:: operator--(int)           //實(shí)現(xiàn)日期類的后置--
    {
    	Date tem(*this);
    	(*this) -= 1;
    	return tem;
    }
     
    //實(shí)現(xiàn)時(shí)期相減的操作符重載
    int Date::operator-(const Date& date)const
    {
    	int count = 0;
    	Date min;
    	if ((*this) < date)
    	{
    		min = (*this);
    		while (min != date)
    		{
    			min++;
    			count++;
    		}
    		return -count;
    	}
    	else
    	{
    		min = date;
    		while (min != (*this))
    		{
    			min++;
    			count++;
    		}
    		return count;
    	}
    }

    到此,關(guān)于“C++類中const修飾的成員函數(shù)及日期類怎么使用”的學(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í)用的文章!

    向AI問(wèn)一下細(xì)節(jié)

    免責(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)容。

    AI