您好,登錄后才能下訂單哦!
這篇文章主要介紹“C++怎么用枚舉表現一組相關的命名常量”,在日常操作中,相信很多人在C++怎么用枚舉表現一組相關的命名常量問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C++怎么用枚舉表現一組相關的命名常量”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
使用枚舉表現一組相關的命名常量
An enumeration shows the enumerators to be related and can be a named type.
枚舉類型表示枚舉值之間具有相關性,并且可以成為命名類型。
Example(示例)
enum class Web_color { red = 0xFF0000, green = 0x00FF00, blue = 0x0000FF };
Switching on an enumeration is common and the compiler can warn against unusual patterns of case labels. For example:
啟用枚舉類型屬于常規操作,并且編譯器可以對不平常的用法進行警示。例如:
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.
這種"只越界一點"的switch語句通常是增加枚舉值后沒有充分測試的結果。
Enforcement(實施建議)
Flag switch-statements where the cases cover most but not all enumerators of an enumeration.
提示switch語句覆蓋大多數枚舉值卻沒有覆蓋所有枚舉值的情況。
Flag switch-statements where the cases cover a few enumerators of an enumeration, but has no default.
提示swtich語句覆蓋了少數枚舉值卻沒有default分支的情況。
到此,關于“C++怎么用枚舉表現一組相關的命名常量”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。