C++核心准则ES.33:如果必须使用宏定义,命名要有唯一性

ES.33: If you must use macros, give them unique names

ES.33:如果必须使用宏定义,命名要有唯一性

 

Reason(原因)

Macros do not obey scope rules.

宏定义不会遵守作用域准则。

 

Example(示例)

#define MYCHAR        /* BAD, will eventually clash with someone else's MYCHAR*/

#define ZCORP_CHAR    /* Still evil, but less likely to clash */

 

Note(注意)

Avoid macros if you can: ES.30, ES.31, and ES.32. However, there are billions of lines of code littered with macros and a long tradition for using and overusing macros. If you are forced to use macros, use long names and supposedly unique prefixes (e.g., your organization's name) to lower the likelihood of a clash.

首先是尽量避免使用宏定义,如果可以的参照ES30,31,32中的方法。然而存在数以十亿计遍布宏定义的代码,也长期存在使用和过度使用宏定义的传统。如果你被迫使用宏定义,使用足够长的名称并可以相信存在唯一性的前缀(例如你所属组织的名称)以便尽量减低冲突的可能性。

 

Enforcement(实施建议)

Warn against short macro names.

对短的宏名称提出警告。

 

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es33-if-you-must-use-macros-give-them-unique-names

 


 

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

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

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