首页 > 其他 > 详细

Expert C programming书摘

时间:2015-02-16 11:32:26      阅读:269      评论:0      收藏:0      [点我收藏+]

 

==================  Advice on signed types  ================ 

Avoid unnecessary complexity by minimizing your use of unsigned types.Specifically, dong‘t use an unsigned type to represent a quantity just because it will never be negative (e.g., "age" or "national_debt").

Use a signed type like int and you won‘t have to worry about boundary cases in the detailed rules for promoting mixed types.

Only use unsigned types for bit fields or binary  masks. 

Use casts in expressions, to make all the operands signed or unsigned, so the compiler does not have to choose the result type.

Expert C programming书摘

原文:http://www.cnblogs.com/likeatree/p/4293734.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!