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

溫馨提示×

溫馨提示×

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

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

C++怎么使用模板表現容器和范圍

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

這篇文章主要介紹“C++怎么使用模板表現容器和范圍”,在日常操作中,相信很多人在C++怎么使用模板表現容器和范圍問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么使用模板表現容器和范圍”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

T.3:使用模板表現容器和范圍

Reason(原因)

Containers need an element type, and expressing that as a template argument is general, reusable, and type safe. It also avoids brittle or inefficient workarounds. Convention: That's the way the STL does it.

容器需要知道元素類型,將元素類型表示為模板參數是通行,可重用和類型安全的方式。它可以避免脆弱性和低效的變通。做為慣例,STL就是這么做的。

Example(示例)

template<typename T>
   // requires Regular<T>
class Vector {
   // ...
   T* elem;   // points to sz Ts
   int sz;
};

Vector<double> v(10);
v[7] = 9.9;
Example, bad(反面示例)
class Container {
   // ...
   void* elem;   // points to size elements of some type
   int sz;
};

Container c(10, sizeof(double));
((double*) c.elem)[7] = 9.9;

This doesn't directly express the intent of the programmer and hides the structure of the program from the type system and optimizer.

Hiding the void* behind macros simply obscures the problems and introduces new opportunities for confusion.

這段代碼沒有直接表達程序員的意圖并對類型系統和優化器隱藏程序結構。用宏定義掩蓋void*只會模糊化問題并進一步增加混淆的機會。

Exceptions: If you need an ABI-stable interface, you might have to provide a base implementation and express the (type-safe) template in terms of that. See Stable base.

例外:如果你需要ABI穩定的接口,你可能必須提供一個基礎實現并按照其概念表現模板。

Enforcement(實施建議)

  • Flag uses of void*s and casts outside low-level implementation code

  • 標記使用void*并在外面的實現代碼中使用低水平類型轉換的情況。

到此,關于“C++怎么使用模板表現容器和范圍”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

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

c++
AI

清水河县| 万源市| 新乡县| 南川市| 华坪县| 固始县| 庄河市| 海口市| 鲜城| 建始县| 永登县| 张掖市| 扬州市| 宜阳县| 城固县| 岫岩| 民县| 麦盖提县| 襄垣县| 南昌县| 伊川县| 潮州市| 辰溪县| 沐川县| 迭部县| 临潭县| 蓬溪县| 郧西县| 兴化市| 韩城市| 新宁县| 石台县| 廊坊市| 揭阳市| 娱乐| 桐梓县| 安吉县| 木里| 宁乡县| 托克逊县| 昌邑市|