W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
盡管函數(shù)轉(zhuǎn)換成成員函數(shù)的過(guò)程是機(jī)械式的,但還是有一些古怪的地方。例如,after函數(shù)對(duì)兩個(gè)Time對(duì)象進(jìn)行操作,而不僅僅是一個(gè),我們不能使它倆都成為隱式的。而需要在其中一個(gè)對(duì)象上調(diào)用這個(gè)函數(shù),并把另一個(gè)對(duì)象作為參數(shù)傳遞給它。
在函數(shù)中,我們隱式地引用其中一個(gè)對(duì)象,而繼續(xù)使用點(diǎn)符號(hào)來(lái)訪問(wèn)另一對(duì)象的實(shí)例變量。
bool Time::after (const Time& time2) const{
if(hour > time2.hour) return true;
if(hour < time2.hour) return false;
f(minute > time2.minute) return true;
if(minute < time2.minute) return false;
if(second > time2.second) return true;
return false;
}
調(diào)用此函數(shù):
if (doneTime.after (currentTime)) {
cout << "The bread will be done after it starts." <<endl;
}
調(diào)用過(guò)程可以這么理解: “如果done-time在current-time之后,那么...”
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: