C++核心准则ES.101:使用无符号类型进行位操作

ES.101: Use unsigned types for bit manipulation

ES.101:使用无符号类型进行位操作

 

Reason(原因)

Unsigned types support bit manipulation without surprises from sign bits.

无符号类型支持不受符号位干扰的位操作。

 

Example(示例)

unsigned char x = 0b1010'1010;
unsigned char y = ~x;   // y == 0b0101'0101;

 

Note(注意)

Unsigned types can also be useful for modulo arithmetic. However, if you want modulo arithmetic add comments as necessary noting the reliance on wraparound behavior, as such code can be surprising for many programmers.

无符号类型在模运算时也很有用。然而,如果你想使用模运算的话,增加必要的注释说明结果会依赖环绕行为,因为这样的代码会让很多程序员感到迷惑。

 

Enforcement(实施建议)

  • Just about impossible in general because of the use of unsigned subscripts in the standard library

  • 基本上不可能,由于标准库使用无符号数作为下标。

  • ???

     

     

     

原文链接

https://github.com/isocpp/CppCoreGuidelines/blob/master/CppCoreGuidelines.md#es101-use-unsigned-types-for-bit-manipulation

 


 

新书介绍

以下是本人3月份出版的新书,拜托多多关注!

 

本书利用Python 的标准GUI 工具包tkinter,通过可执行的示例对23 个设计模式逐个进行说明。这样一方面可以使读者了解真实的软件开发工作中每个设计模式的运用场景和想要解决的问题;另一方面通过对这些问题的解决过程进行说明,让读者明白在编写代码时如何判断使用设计模式的利弊,并合理运用设计模式。

对设计模式感兴趣而且希望随学随用的读者通过本书可以快速跨越从理解到运用的门槛;希望学习Python GUI 编程的读者可以将本书中的示例作为设计和开发的参考;使用Python 语言进行图像分析、数据处理工作的读者可以直接以本书中的示例为基础,迅速构建自己的系统架构。

 

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

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

你可能感兴趣的:(C++)