91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

C++怎么避免互補性約束

發布時間:2021-11-24 11:10:39 來源:億速云 閱讀:142 作者:iii 欄目:大數據

這篇文章主要講解了“C++怎么避免互補性約束”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++怎么避免互補性約束”吧!

T.25:避免互補約束

Reason(原因)

Clarity. Maintainability. Functions with complementary requirements expressed using negation are brittle.

清晰性。可維護性。包含互補的,使用否定方式表達的需求的函數是脆弱的。

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();
Note(注意)

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++怎么避免互補性約束這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

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

c++
AI

株洲市| 攀枝花市| 高邑县| 腾冲县| 昆明市| 霍城县| 台安县| 张家口市| 大埔区| 务川| 台南县| 宁南县| 武平县| 库伦旗| 安顺市| 大丰市| 静宁县| 岳西县| 辛集市| 应城市| 扶风县| 浦东新区| 永善县| 临城县| 武穴市| 甘孜县| 静海县| 敦化市| 屯门区| 玉树县| 嵩明县| 崇左市| 合山市| 高淳县| 奇台县| 乐都县| 韶山市| 丰县| 苍梧县| 仙游县| 罗平县|