C++核心准则ES.45:避免“魔法常数”,使用符号化常量

ES.45: Avoid "magic constants"; use symbolic constants

ES.45:避免“魔法常数”,使用符号化常量

 

Reason(原因)

 

Unnamed constants embedded in expressions are easily overlooked and often hard to understand:

表达式中的无名常量很容易被忽视,通常也难于理解。

 

Example(示例)

 

for (int m = 1; m <= 12; ++m)   // don't: magic constant 12
    cout << month[m] << '\n';

 

No, we don't all know that there are 12 months, numbered 1..12, in a year. Better:

不是所有人都知道都理解数字1...12指的是一年中的12个月。好一点的写法是:

 

// months are indexed 1..12
constexpr int first_month = 1;
constexpr int last_month = 12;

for (int m = first_month; m <= last_month; ++m)   // better
    cout << month[m] << '\n';

 

Better still, don't expose constants:

不暴露常量也是比较好的做法:

 

for (auto m : month)
    cout << m << '\n';

 

 

Enforcement(实施建议)

 

Flag literals in code. Give a pass to 0, 1, nullptr, \n, "", and others on a positive list.

标记代码中的字面量。但是允许0,1,nullptr,\n,“”,还有其他包括在正面清单中的字面量。

 

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es45-avoid-magic-constants-use-symbolic-constants

 


 

觉得本文有帮助?欢迎点赞并分享给更多的人。

阅读更多更新文章,请关注微信公众号【面向对象思考】

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章