溫馨提示×

溫馨提示×

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

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

C++怎么避免無意中編寫非通用代碼

發(fā)布時間:2021-11-24 10:43:39 來源:億速云 閱讀:151 作者:iii 欄目:大數(shù)據(jù)

本篇內(nèi)容介紹了“C++怎么避免無意中編寫非通用代碼”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!

Reason(原因)

Generality. Reusability. Don't gratuitously commit to details; use the most general facilities available.

通用性。重用性。不要無故陷入細節(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.

當然,如果確實是你想要的,范圍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());
}
Enforcement(實施建議)
  • Flag comparison of iterators using < instead of !=.

    標記使用<而不是!=進行迭代器比較的情況。

  • 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()可用,標記使用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.

    標記函數(shù)獲取派生類的指針或引用卻只使用到基類函數(shù)的情況。

“C++怎么避免無意中編寫非通用代碼”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!

向AI問一下細節(jié)

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

c++
AI