您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++怎么使用模板表現容器和范圍”,在日常操作中,相信很多人在C++怎么使用模板表現容器和范圍問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么使用模板表現容器和范圍”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
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<typename T>
// requires Regular<T>
class Vector {
// ...
T* elem; // points to sz Ts
int sz;
};
Vector<double> 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.
這段代碼沒有直接表達程序員的意圖并對類型系統和優化器隱藏程序結構。用宏定義掩蓋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++怎么使用模板表現容器和范圍”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。