微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

c – 由于LARGEADDRESSAWARE而检测指针算术

我想将我的应用程序切换到LARGEADDRESSAWARE.需要注意的一个问题是指针算术,因为指针差异不能再表示为带符号32b.

有没有办法如何在大型C项目中自动查找指针减法的所有实例?

如果没有,是否有一些“尽力而为”的手动或半自动方法如何实现这一目标?

解决方法

PC-Lint可以找到这种问题.

看看http://gimpel-online.com/MsgRef.html,错误代码947:

Subtract operator applied to pointers — An expression of the form p – q was found where both p and q are pointers. This is of special importance in cases where the maximum pointer can overflow the type that holds pointer differences. For example,suppose that the maximum pointer is 3 Gigabytes -1,and that pointer differences are represented by a long,where the maximum long is 2 Gigabytes -1. Note that both of these quantities fit within a 32 bit word. Then subtracting a small pointer from a very large pointer will produce an apparent negative value in the long representing the pointer difference. Conversely,subtracting a very large pointer from a small pointer can produce a positive quantity.

原文地址:https://www.jb51.cc/c/118584.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐