gpt4 book ai didi

c - 故意值溢出安全吗?

转载 作者:可可西里 更新时间:2023-11-01 09:46:31 26 4
gpt4 key购买 nike

这个问题可能很愚蠢或偏执,但无论如何 :-)。给定以下代码:

DWORD hiRes;

// will overflow about once in an hour
hiRes = GetTickCount() * 1193L;

如果知道hiRes会周期性溢出,并且处理得当,那么这段代码有什么问题吗?

更新:结果令我非常惊讶,因为答案取决于 hiRes 的类型(有符号或无符号),这是由 C 标准 ( see for example ) 定义的。

最佳答案

溢出 unsigned int 是安全的。溢出签名的不是(未定义的行为)。

MSDN说:

A DWORD is a 32-bit unsigned integer (range: 0 through 4294967295 decimal). This type is declared as follows:

typedef unsigned long DWORD

所以它应该是安全的。

关于c - 故意值溢出安全吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6971759/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com