這篇文章主要講解了“C++怎么避免互補性約束”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++怎么避免互補性約束”吧!
專注于為中小企業提供成都網站建設、做網站服務,電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業平桂免費做網站提供優質的服務。我們立足成都,凝聚了一批互聯網行業人才,有力地推動了上1000家企業的穩健成長,幫助中小企業通過網站建設實現規模擴充和轉變。
T.25:避免互補約束
Clarity. Maintainability. Functions with complementary requirements expressed using negation are brittle.
清晰性??删S護性。包含互補的,使用否定方式表達的需求的函數是脆弱的。
Example (using TS concepts)(示例(使用TS概念))
Initially, people will try to define functions with complementary requirements:
最開始,人們試圖用互補需求定義函數:
template<typename T>
requires !C<T> // bad
void f();
template<typename T>
requires C<T>
void f();
This is better:
下面的代碼更好:
template<typename T> // general template
void f();
template<typename T> // specialization by concept
requires C<T>
void f();
The compiler will choose the unconstrained template only when C<T> is unsatisfied. If you do not want to (or cannot) define an unconstrained version of f(), then delete it.
只有在C<T>不能滿足時,編譯器才會選擇非約束模板。如果你不想(或不能)定于f()的非約束性版本,刪除它。
template<typename T>
void f() = delete;
The compiler will select the overload and emit an appropriate error.
編譯器會選擇重載重載并報出適當的錯誤。
Note(注意)
Complementary constraints are unfortunately common in enable_if code:
很不幸,互補的約束在enable_if代碼中很常見:
template<typename T>
enable_if<!C<T>, void> // bad
f();
template<typename T>
enable_if<C<T>, void>
f();
Complementary requirements on one requirements is sometimes (wrongly) considered manageable. However, for two or more requirements the number of definitions needs can go up exponentially (2,4,8,16,...):
一個需求上的互補需求有時(被錯誤地)認為是可控的。然而,對于兩個或更多的需求,定義的數目需要可以按照指數方式增長。
C1<T> && C2<T>
!C1<T> && C2<T>
C1<T> && !C2<T>
!C1<T> && !C2<T>
Now the opportunities for errors multiply.
現在錯誤的可能性也倍增了。
Enforcement(實施建議)
Flag pairs of functions with C<T> and !C<T> constraints
標記使用C<T> 和!C<T> 約束的函數對。
感謝各位的閱讀,以上就是“C++怎么避免互補性約束”的內容了,經過本文的學習后,相信大家對C++怎么避免互補性約束這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是創新互聯,小編將為大家推送更多相關知識點的文章,歡迎關注!
分享文章:C++怎么避免互補性約束
地址分享:http://vcdvsql.cn/article40/pdiseo.html
成都網站建設公司_創新互聯,為您提供響應式網站、網站收錄、用戶體驗、網頁設計公司、做網站、網站排名
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯