溫馨提示×

溫馨提示×

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

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

C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么

發(fā)布時(shí)間:2021-09-14 15:25:15 來源:億速云 閱讀:172 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要講解了“C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么”,文中的講解內(nèi)容簡單清晰,易于學(xué)習(xí)與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學(xué)習(xí)“C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么”吧!



C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么


Reason(原因)

到目前為止,被調(diào)用的函數(shù)應(yīng)該只屬于構(gòu)造對象本身,而不是可能存在于派生類中的某個(gè)覆蓋函數(shù)。那樣做非常難理解。最壞的情況,在構(gòu)造函數(shù)或者析構(gòu)函數(shù)中直接或間接調(diào)用一個(gè)沒有實(shí)現(xiàn)的純虛函數(shù)會導(dǎo)致沒有定義的行為。


Example, bad(反面示例)
 
class Base {
public:
   virtual void f() = 0;   // not implemented
   virtual void g();       // implemented with Base version
   virtual void h();       // implemented with Base version
   virtual ~Base();        // implemented with Base version
};

class Derived : public Base {
public:
   void g() override;   // provide Derived implementation
   void h() final;      // provide Derived implementation

   Derived()
   {
       // BAD: attempt to call an unimplemented virtual function
       f();

       // BAD: will call Derived::g, not dispatch further virtually
       g();

       // GOOD: explicitly state intent to call only the visible version
       Derived::g();

       // ok, no qualification needed, h is final
       h();
   }
};
     

注意:調(diào)用一個(gè)特定的限定函數(shù)不是虛調(diào)用,即使這個(gè)函數(shù)是虛函數(shù)。

See also factory functions for how to achieve the effect of a call to a derived class function without risking undefined behavior.

參考工廠函數(shù)以便了解如何達(dá)成調(diào)用派生類功能的效果而不必承擔(dān)引起未定義行為的風(fēng)險(xiǎn)。

Note(注意)

There is nothing inherently wrong with calling virtual functions from constructors and destructors. The semantics of such calls is type safe. However, experience shows that such calls are rarely needed, easily confuse maintainers, and become a source of errors when used by novices.

從構(gòu)造函數(shù)和析構(gòu)函數(shù)中調(diào)用虛函數(shù)并不是本身有什么錯(cuò)誤。這種調(diào)用的語義是安全的。然而,經(jīng)驗(yàn)表明這樣的調(diào)用很少是必須的,很容易擾亂維護(hù)者,如果被新手使用會成為錯(cuò)誤源。

Enforcement(實(shí)施建議)
  • Flag calls of virtual functions from constructors and destructors.

  • 提示來自構(gòu)造函數(shù)或析構(gòu)函數(shù)的虛函數(shù)調(diào)用。

感謝各位的閱讀,以上就是“C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對C++不要在構(gòu)造函數(shù)或析構(gòu)函數(shù)中調(diào)用虛函數(shù)的原因是什么這一問題有了更深刻的體會,具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識點(diǎn)的文章,歡迎關(guān)注!

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

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

c++
AI