這篇文章主要介紹“C++怎么使用模板表現容器和范圍”,在日常操作中,相信很多人在C++怎么使用模板表現容器和范圍問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么使用模板表現容器和范圍”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創(chuàng)新互聯建站專注于企業(yè)全網營銷推廣、網站重做改版、樅陽網站定制設計、自適應品牌網站建設、H5開發(fā)、商城網站建設、集團公司官網建設、外貿網站制作、高端網站制作、響應式網頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為樅陽等各大城市提供網站開發(fā)制作服務。
T.3:使用模板表現容器和范圍
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
// requires Regular
class Vector {
// ...
T* elem; // points to sz Ts
int sz;
};
Vector v(10);
v[7] = 9.9;
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.
這段代碼沒有直接表達程序員的意圖并對類型系統(tǒng)和優(yōu)化器隱藏程序結構。用宏定義掩蓋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穩(wěn)定的接口,你可能必須提供一個基礎實現并按照其概念表現模板。
Enforcement(實施建議)
Flag uses of void*s and casts outside low-level implementation code
標記使用void*并在外面的實現代碼中使用低水平類型轉換的情況。
到此,關于“C++怎么使用模板表現容器和范圍”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續(xù)學習更多相關知識,請繼續(xù)關注創(chuàng)新互聯網站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>
當前文章:C++怎么使用模板表現容器和范圍
本文來源:http://weahome.cn/article/piodee.html