温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

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

发布时间:2021-11-26 14:15:48 来源:亿速云 阅读:159 作者:iii 栏目:大数据

本篇内容主要讲解“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++怎么使用符号化常量”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

c++
AI