溫馨提示×

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

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

C++怎么用枚舉表現(xiàn)一組相關(guān)的命名常量

發(fā)布時(shí)間:2021-08-24 09:44:32 來(lái)源:億速云 閱讀:314 作者:chen 欄目:大數(shù)據(jù)

這篇文章主要介紹“C++怎么用枚舉表現(xiàn)一組相關(guān)的命名常量”,在日常操作中,相信很多人在C++怎么用枚舉表現(xiàn)一組相關(guān)的命名常量問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”C++怎么用枚舉表現(xiàn)一組相關(guān)的命名常量”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

使用枚舉表現(xiàn)一組相關(guān)的命名常量

Reason(原因)

An enumeration shows the enumerators to be related and can be a named type.

枚舉類型表示枚舉值之間具有相關(guān)性,并且可以成為命名類型。

Example(示例)

enum class Web_color { red = 0xFF0000, green = 0x00FF00, blue = 0x0000FF };
Note(注意)

Switching on an enumeration is common and the compiler can warn against unusual patterns of case labels. For example:

啟用枚舉類型屬于常規(guī)操作,并且編譯器可以對(duì)不平常的用法進(jìn)行警示。例如:

enum class Product_info { red = 0, purple = 1, blue = 2 };

void print(Product_info inf)
{
   switch (inf) {
   case Product_info::red: cout << "red"; break;
   case Product_info::purple: cout << "purple"; break;
   }
}

Such off-by-one switch-statements are often the results of an added enumerator and insufficient testing.

這種"只越界一點(diǎn)"的switch語(yǔ)句通常是增加枚舉值后沒(méi)有充分測(cè)試的結(jié)果。

Enforcement(實(shí)施建議)

  • Flag switch-statements where the cases cover most but not all enumerators of an enumeration.

  • 提示switch語(yǔ)句覆蓋大多數(shù)枚舉值卻沒(méi)有覆蓋所有枚舉值的情況。

  • Flag switch-statements where the cases cover a few enumerators of an enumeration, but has no default.

  • 提示swtich語(yǔ)句覆蓋了少數(shù)枚舉值卻沒(méi)有default分支的情況。

到此,關(guān)于“C++怎么用枚舉表現(xiàn)一組相關(guān)的命名常量”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

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

c++
AI