C++怎么使用模板表現(xiàn)容器和范圍

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

創(chuàng)新互聯(lián)建站專注于企業(yè)全網(wǎng)營銷推廣、網(wǎng)站重做改版、樅陽網(wǎng)站定制設(shè)計、自適應(yīng)品牌網(wǎng)站建設(shè)、H5開發(fā)、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、外貿(mào)網(wǎng)站制作、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計等建站業(yè)務(wù),價格優(yōu)惠性價比高,為樅陽等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

T.3:使用模板表現(xiàn)容器和范圍

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.

容器需要知道元素類型,將元素類型表示為模板參數(shù)是通行,可重用和類型安全的方式。它可以避免脆弱性和低效的變通。做為慣例,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.

這段代碼沒有直接表達(dá)程序員的意圖并對類型系統(tǒng)和優(yōu)化器隱藏程序結(jié)構(gòu)。用宏定義掩蓋void*只會模糊化問題并進(jìn)一步增加混淆的機(jī)會。

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)定的接口,你可能必須提供一個基礎(chǔ)實現(xiàn)并按照其概念表現(xiàn)模板。

Enforcement(實施建議)

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

  • 標(biāo)記使用void*并在外面的實現(xiàn)代碼中使用低水平類型轉(zhuǎn)換的情況。

到此,關(guān)于“C++怎么使用模板表現(xiàn)容器和范圍”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬嵱玫奈恼拢?/p>

新聞標(biāo)題:C++怎么使用模板表現(xiàn)容器和范圍
分享路徑:http://muchs.cn/article44/piodee.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供企業(yè)網(wǎng)站制作電子商務(wù)、域名注冊、用戶體驗、移動網(wǎng)站建設(shè)、網(wǎng)站導(dǎo)航

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

h5響應(yīng)式網(wǎng)站建設(shè)