C++怎么使用符号化常量

本篇内容主要讲解“C++怎么使用符号化常量”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C++怎么使用符号化常量”吧!

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,“”,还有其他包括在正面清单中的字面量。

到此,相信大家对“C++怎么使用符号化常量”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!