字符或浮点溢出

发布于 2024-11-06 00:53:12 字数 165 浏览 0 评论 0原文

不确定如何判断是否可能发生溢出。我得到了这个示例代码:

char x;  
float f, g;  
// some values get assigned to x and f here...  
g = f + x;  

有人可以解释一下吗?

Unsure how to tell if an overflow is possible. I am given this sample code:

char x;  
float f, g;  
// some values get assigned to x and f here...  
g = f + x;  

Can someone please explain?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无所的.畏惧 2024-11-13 00:53:12

float 在其最高限制(二进制指数 127)下,没有足够的精度(23 位)来显示最大可能的 char (127, 7位),因此不可能溢出,因为加法没有效果(需要 127-7=120 的精度)。

A float, at its highest limits (binary exponent of 127), does not have sufficient precision (23 bits) to show a difference of the largest possible char (127, 7 bits), and so overflow is not possible since addition will have no effect (a precision of 127-7=120 would be required).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文