溫馨提示×

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

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

C++中三大函數(shù)和操作符重載的示例分析

發(fā)布時(shí)間:2021-07-15 15:16:15 來(lái)源:億速云 閱讀:146 作者:小新 欄目:編程語(yǔ)言

這篇文章主要介紹C++中三大函數(shù)和操作符重載的示例分析,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

C++中三大函數(shù):

  • 析構(gòu)函數(shù)

  • 復(fù)制構(gòu)造函數(shù)

  • =操作符(copy assignment operator)

這三個(gè)特殊的成員函數(shù)如果程序員沒(méi)有實(shí)現(xiàn),編譯器將提供默認(rèn)的實(shí)現(xiàn)方式。

析構(gòu)函數(shù):

形如~foo_t(),函數(shù)名和構(gòu)造函數(shù)相同,前面加~,如果對(duì)象是自由變量創(chuàng)建,析構(gòu)函數(shù)將在脫離作用域時(shí)調(diào)用。如果對(duì)象是通過(guò)new操作符創(chuàng)建的,則通過(guò)delete操作符調(diào)用析構(gòu)函數(shù)。

復(fù)制構(gòu)造函數(shù):

形如foo_t(const foo_t& foo),以下情況復(fù)制構(gòu)造函數(shù)均會(huì)被調(diào)用:

  1. 當(dāng)對(duì)象按值返回時(shí)候(returned by value)

  2. 調(diào)用按值傳參的函數(shù)(passed by value)

  3. 通過(guò)thrown拋出或caught捕獲的對(duì)象

  4. 對(duì)象處于()包圍的初始化列表中

=操作符:

重載=操作符,如foo_t& operator=(const foo_t& foo),對(duì)已有對(duì)象的賦值操作將調(diào)用該函數(shù)(未初始化的對(duì)象成員將調(diào)用復(fù)制構(gòu)造函數(shù))。

以下為代碼實(shí)例:

#include <cstring>
#include <iostream>
class foo_t {
 friend std::ostream &operator<<(std::ostream &os, foo_t const &foo) {
  os << foo.data;
  return os;
 }
 public:
 foo_t(void) : data(new char[14]) { std::strcpy(data, "Hello, World!"); }
 ~foo_t(void) { delete[] data; }
 foo_t(const foo_t& other);
 foo_t &operator=(const foo_t& other);
 private:
 char *data;
};
foo_t::foo_t(const foo_t& other) {
 std::cout << "call copy constructor!!!" << std::endl;
 this->data = new char[strlen(other.data) + 1];
 strcpy(this->data, other.data);
}
foo_t& foo_t::operator=(const foo_t& other) {
 std::cout << "call the copy assignment operator!!!" << std::endl;
 if (this == &other)
   return *this;
 this->data = new char[strlen(other.data) + 1];
 strcpy(this->data, other.data);
 return *this;
}
int main() {
 foo_t foo;
 std::cout << foo << '\n';
 foo_t t(foo);
 // foo_t t2 = t;
 foo_t t3;
 t3 = t;
 return 0;
}

為了方便測(cè)試,可以分別在析構(gòu)函數(shù)、拷貝構(gòu)造、=重載處設(shè)置斷點(diǎn),觀察程序執(zhí)行流程。

以上是“C++中三大函數(shù)和操作符重載的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向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