溫馨提示×

溫馨提示×

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

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

C++使用final時需要注意什么

發(fā)布時間:2021-08-24 09:38:46 來源:億速云 閱讀:172 作者:chen 欄目:大數據

這篇文章主要講解了“C++使用final時需要注意什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++使用final時需要注意什么”吧!

謹慎使用final

Reason(原因)

Capping a hierarchy with final is rarely needed for logical reasons and can be damaging to the extensibility of a hierarchy.

很少會因為邏輯方面的原因而使用final關鍵詞關閉后續(xù)的覆蓋函數,這種做法會破壞繼承的擴展性。

Example, bad(反面示例)
class Widget { /* ... */ };

// nobody will ever want to improve My_widget (or so you thought)
class My_widget final : public Widget { /* ... */ };

class My_improved_widget : public My_widget { /* ... */ };  // error: can't do that

Note(注意)

Not every class is meant to be a base class. Most standard-library classes are examples of that (e.g., std::vector and std::string are not designed to be derived from). This rule is about using final on classes with virtual functions meant to be interfaces for a class hierarchy.

不是所有的類都被設計為基類。大多數標準庫中的類就是這方面的例子(例如std::vector和std::string就不是設計用來繼承的)。這條規(guī)則的使用范圍是那些包含虛函數并且意圖作為接口被繼承的類。


Note(注意)

Capping an individual virtual function with final is error-prone as final can easily be overlooked when defining/overriding a set of functions. Fortunately, the compiler catches such mistakes: You cannot re-declare/re-open a final member in a derived class.

定義/覆蓋一組函數時,finial很容易被忽略,這種使用final為每個單獨的虛函數關閉覆蓋函數的做法容易引發(fā)錯誤。幸運的是,編譯器可以捕捉這些錯誤:你無法在派生類中重新定義或重新打開一個final成員。

Note(注意)

Claims of performance improvements from final should be substantiated. Too often, such claims are based on conjecture or experience with other languages.

使用final可以提高性能這個判斷是缺乏證據的。有太多的情況,這個判斷只是源于猜測或者其他語言的經驗。

There are examples where final can be important for both logical and performance reasons. One example is a performance-critical AST hierarchy in a compiler or language analysis tool. New derived classes are not added every year and only by library implementers. However, misuses are (or at least have been) far more common.

存在某些場景,無論是由于邏輯還是性能方面的原因,final變得很重要。一個例子就是性能要求非常嚴格的編譯器或者語言分析工具。只有庫的實現者會添加新的派生類,而且不會每年增加。但是錯誤地使用卻更加普遍(至少曾經被誤用過)。

AST:Abstract syntax tree(抽象語法樹)-譯者注

Enforcement(實施建議)

Flag uses of final.

標志對于final的使用。

感謝各位的閱讀,以上就是“C++使用final時需要注意什么”的內容了,經過本文的學習后,相信大家對C++使用final時需要注意什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節(jié)

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

c++
AI