中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

C++單類型參數概念是什么

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

本篇內容主要講解“C++單類型參數概念是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C++單類型參數概念是什么”吧!

T.13:對于簡單的,單類型參數概念,使用縮略記法更好

Reason(原因)

Readability. Direct expression of an idea.

可讀性。直接表現想法。

Example (using TS concepts)示例(使用TS概念)

To say "T is Sortable":

為了表達“T是可排序類型”:

template<typename T>       // Correct but verbose: "The parameter is
//    requires Sortable<T>   // of type T which is the name of a type
void sort(T&);             // that is Sortable"

template<Sortable T>       // Better (assuming support for concepts): "The parameter is of type T
void sort(T&);             // which is Sortable"

void sort(Sortable&);      // Best (assuming support for concepts): "The parameter is Sortable"

The shorter versions better match the way we speak. Note that many templates don't need to use the template keyword.

較短的版本更符合我們想要表達的。注意很多模板不需要使用模板關鍵字。

Note(注意)

"Concepts" are defined in an ISO Technical Specification: concepts. A draft of a set of standard-library concepts can be found in another ISO TS: ranges Concepts are supported in GCC 6.1 and later. Consequently, we comment out uses of concepts in examples; that is, we use them as formalized comments only. If you use a compiler that supports concepts (e.g., GCC 6.1 or later), you can remove the //

“概念”在ISO技術規格concepts中被定義。一套標準庫concepts的初步版本可以在另一個ISO技術規格:ranges中找到。GCC6.1以后都支持concepts。因此我們在實例代碼中注釋掉使用concepts的部分;也就是說我們只是將它們用作標準的注釋。如果你使用GCC6.1之后的版本,可以打開注釋。

Enforcement(實施建議)

  • Not feasible in the short term when people convert from the <typename T> and <class T> notation.

  • 如果人們從<typename T> 和<class T>記法轉過來,使用縮略記法是不合適的。

  • Later, flag declarations that first introduce a typename and then constrain it with a simple, single-type-argument concept.

  • 隨后,標記第一次引入類型名并馬上使用簡單的,單類型概念對其進行約束的情況。

到此,相信大家對“C++單類型參數概念是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

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

c++
AI

图木舒克市| 拜泉县| 电白县| 中山市| 凤庆县| 连城县| 宁武县| 伊宁市| 始兴县| 屏南县| 安岳县| 汤阴县| 南投县| 怀集县| 石嘴山市| 青浦区| 鄢陵县| 福鼎市| 太原市| 乐平市| 珲春市| 西乡县| 内丘县| 宁海县| 万山特区| 襄垣县| 酒泉市| 崇文区| 瑞丽市| 华坪县| 鲁山县| 永康市| 临猗县| 新竹县| 梓潼县| 安远县| 阜南县| 大厂| 万州区| 大余县| 蒲城县|