<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
給出一段簡單的程式碼
程式碼段:
#include <iostream> using std::cin; using std::cout; using std::endl; class Date1 { public: Date1(int year = 2000) 類的全預設建構函式(可無參呼叫) { _year = year; } void Prin() { cout << "Print Date:" << _year << endl; } private: int _year; }; int main() { const Date1 a; 定義一個const修飾的物件a(該物件只可讀,不可被寫入) a.Prin(); return 0; }
該段程式會編譯報錯:
上述程式碼段出錯的原因要從類的成員函數的隱含引數this指標出發進行分析:
注意:
我們知道類的每個成員函數都有一個隱含的this指標形參(型別為:類名*const this)。
為了使被const修飾的物件(比如是上面程式碼段中的a)可以呼叫其成員物件,C++規定可以用const來修飾類的成員函數。
類中被const修飾的“成員函數”稱為const成員函數,const修飾類成員函數,本質上修飾該成員函數隱含的this指標,表明在該成員函數中不能對類的任何成員變數進行修改。(修飾後成員函數的this指標形參型別變為:const 類名* const this)
比如:
const修飾的物件不可以呼叫非const修飾的成員函數(類指標傳參給this指標時讀寫許可權被放大):
非const修飾的物件可以呼叫const修飾的成員函數(類指標傳參給this指標時讀寫許可權被縮小):
const修飾的成員函數內不可以呼叫其它的非const修飾的成員函數(this指標之間傳參時讀寫許可權被放大):
非const修飾的成員函數內可以呼叫其它的const修飾的成員函數(this指標之間傳參時讀寫許可權被縮小):
當類的成員函數中沒有對類的成員變數進行任何形式的修改操作時,該成員函數最好都用const來修飾(這樣安全同時又使得const修飾的物件可以呼叫該成員函數)以保證程式碼的健壯性。
編譯器會預設生成兩個類的&(取地址)過載用於類的取地址操作(如果我們自定義了類的取地址過載則編譯器便不會再生成預設的)
C++中,內建運運算元若要直接作用於類物件則必須經過過載。
若想取到類物件的地址,我們可以對&運運算元進行過載,比如:
#include <iostream> using std::cin; using std::cout; using std::endl; class Date1 { public: Date1(int year = 2000) { _year = year; } Date1* operator& () 對&進行過載用於非const修飾的物件的取地址 { return this; } const Date1* operator&() const 對&進行過載用於const修飾的物件的取地址 { return this; } private: int _year; }; int main() { const Date1 a; 定義一個const修飾的物件a(該物件只可讀,不可被寫入) Date1 b; cout << &a << endl; cout << &b << endl; return 0; }
這兩個預設成員函數一般不用重新自定義 ,編譯器預設會生成,編譯其預設生成的&過載和上面我們自定義的成員函數應該沒有什麼區別(至少功能上沒區別)。
日期類標頭檔案:
為了提高程式碼的可維護性和可讀性,將日期類的成員函數的宣告和定義分開寫。
#pragma once #include <iostream> using std::cout; using std::cin; using std::endl; //記錄日期的類 class Date { public: //Date的建構函式 Date(int day=1, int month=1, int year=1); //獲取月份天數的方法 int GetMonthday(const int month) const; //類物件的日期列印函數 void Print() const; //判斷某個日期是星期幾,並列印出來 void GetWeekDay() const ; //一組比較運運算元的過載 bool operator> (const Date& date)const; bool operator==(const Date& date)const; //在邏輯上我們只需定義出大於(或小於)和等於的判斷函數,剩餘的判斷函數我們就可以通過複用的方 式簡化程式碼書寫 bool operator<(const Date& date)const; bool operator>=(const Date& date)const; bool operator<=(const Date& date)const; bool operator!=(const Date& date)const; //一組日期+(-)整數的操作和+=(-=)整數的操作 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++(); //實現日期類的前置++ Date operator++(int); //實現日期類的後置++ Date& operator--(); //實現日期類的前置-- Date operator--(int); //實現日期類的後置-- //實現時期相減的操作符過載 int operator-(const Date& date)const; private: int _day; int _month; int _year; };
日期類的成員函數的實現:
#include "Date.h" //Date的建構函式 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); } } //獲取相應月份天數的方法 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; } //類物件的日期列印函數 void Date::Print()const { cout << _year << ' ' << _month << ' ' << _day << ' ' << endl; } //判斷某個日期是星期幾,並列印出來 //注意this指標不能由使用者去傳 void Date::GetWeekDay()const { const char* arr[7] = { "星期一","星期二","星期三","星期四","星期五","星期六","星期日" }; const Date tem(1, 1, 1900); const int subret = (*this)-tem; printf("%sn", arr[(subret % 7)]); } //將 > 運運算元進行過載 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; } //將 =運運算元進行過載 bool Date:: operator==(const Date& date)const { if (date._day == _day && date._month == _month && date._year == _year) { return true; } return false; } //在邏輯上我們只需定義出大於(或小於)和等於的判斷函數,剩餘的判斷函數我們就可以通過複用的方式簡化程式碼書寫 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; } //一組日期+(-)整數的操作和+=(-=)整數的操作 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++() //實現日期類的前置++ { (*this) += 1; return (*this); } Date Date ::operator++(int) //實現日期類的後置++ { Date tem(*this); (*this) += 1; return tem; } Date& Date:: operator--() //實現日期類的前置-- { (*this) -= 1; return (*this); } Date Date:: operator--(int) //實現日期類的後置-- { Date tem(*this); (*this) -= 1; return tem; } //實現時期相減的操作符過載 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; } }
到此這篇關於C++類別中const修飾的成員函數及日期類小練習的文章就介紹到這了,更多相關C++類別const修飾的成員函數內容請搜尋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