本篇內(nèi)容介紹了“C++怎么避免無意中編寫非通用代碼”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
成都創(chuàng)新互聯(lián)公司 - 雅安服務(wù)器托管,四川服務(wù)器租用,成都服務(wù)器租用,四川網(wǎng)通托管,綿陽服務(wù)器托管,德陽服務(wù)器托管,遂寧服務(wù)器托管,綿陽服務(wù)器托管,四川云主機(jī),成都云主機(jī),西南云主機(jī),雅安服務(wù)器托管,西南服務(wù)器托管,四川/成都大帶寬,成都機(jī)柜租用,四川老牌IDC服務(wù)商
Generality. Reusability. Don't gratuitously commit to details; use the most general facilities available.
通用性。重用性。不要無故陷入細(xì)節(jié)。使用可用的,更加通用的功能。
Example(示例)
Use != instead of < to compare iterators; != works for more objects because it doesn't rely on ordering.
使用!=而不是<比較迭代器;由于不依賴有序性,!=適用于更多對象。
for (auto i = first; i < last; ++i) { // less generic
// ...
}
for (auto i = first; i != last; ++i) { // good; more generic
// ...
}
Of course, range-for is better still where it does what you want.
當(dāng)然,如果確實(shí)是你想要的,范圍for語句可能是更好的選擇。
Example(示例)
Use the least-derived class that has the functionality you need.
使用包含你需要功能的最少繼承類。
class Base {
public:
Bar f();
Bar g();
};
class Derived1 : public Base {
public:
Bar h();
};
class Derived2 : public Base {
public:
Bar j();
};
// bad, unless there is a specific reason for limiting to Derived1 objects only
void my_func(Derived1& param)
{
use(param.f());
use(param.g());
}
// good, uses only Base interface so only commit to that
void my_func(Base& param)
{
use(param.f());
use(param.g());
}
Flag comparison of iterators using < instead of !=.
標(biāo)記使用<而不是!=進(jìn)行迭代器比較的情況。
Flag x.size() == 0 when x.empty() or x.is_empty() is available. Emptiness works for more containers than size(), because some containers don't know their size or are conceptually of unbounded size.
如果x.empty()或者x.is_empty()可用,標(biāo)記使用x.size()==0的代碼。由于有些容器不知道自己的大小或者概念上是無限大的,相比size(),空判斷可以用于更多的容器。
Flag functions that take a pointer or reference to a more-derived type but only use functions declared in a base type.
標(biāo)記函數(shù)獲取派生類的指針或引用卻只使用到基類函數(shù)的情況。
“C++怎么避免無意中編寫非通用代碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
分享名稱:C++怎么避免無意中編寫非通用代碼
文章位置:http://aaarwkj.com/article12/pjsdgc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供小程序開發(fā)、軟件開發(fā)、品牌網(wǎng)站制作、企業(yè)建站、、網(wǎng)站收錄
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)