gpt4 book ai didi

c - C 中的无符号和有符号值(输出)

转载 作者:太空狗 更新时间:2023-10-29 16:58:14 25 4
gpt4 key购买 nike

signed int x = -5;
unsigned int y = x;

y 的值是多少?怎么会这样?

最佳答案

这取决于unsigned int 的最大值。通常,unsigned int 为 32 位长,因此 UINT_MAX 为 232 - 1. C 标准(§6.3.1.3/2) 需要有符号→无符号转换执行为

Otherwise, if the new type is unsigned, the value is converted by repeatedly adding or subtracting one more than the maximum value that can be represented in the new type until the value is in the range of the new type.

因此 y = x + ((232 − 1) + 1) = 232 − 5 = 4294967291。


2's complement 中平台,现在大多数实现都是y 也与 x 的 2 的补码表示相同。

-5 = ~5 + 1 = 0xFFFFFFFA + 1 = 0xFFFFFFFB = 4294967291。

关于c - C 中的无符号和有符号值(输出),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3668734/

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