gpt4 book ai didi

c++ - C++ 标准对带符号整数类型的最小值和最大值之间关系的保证是什么?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:39:55 25 4
gpt4 key购买 nike

假设 -LLONG_MAX 是否安全? (否定 LLONG_MAX )属于 long long范围?

假设如果 LLONG_MIN < -LLONG_MAX 是否安全?然后 LLONG_MIN == -LLONG_MAX - 1

它是由标准保证的还是所有实际设备都提供 LLONG_MIN == -LLONG_MAX - 1LLONG_MIN == -LLONG_MAX

最佳答案

Is it safe to assume that -LLONG_MAX (negated LLONG_MAX) belongs to long long range?

Is it safe to assume that if LLONG_MIN < -LLONG_MAX then LLONG_MIN == -LLONG_MAX - 1?

Is it guaranteed by the Standard or just all actual devices provide either LLONG_MIN == -LLONG_MAX - 1 or LLONG_MIN == -LLONG_MAX?


如果实现使用 2 的补码、1 的补码或符号和大小之一来表示有符号整数类型,那么这三个陈述是正确的。 -LLONG_MAXlong long 范围内在所有三个方案中,以及LLONG_MIN-LLONG_MAX (1 的补码、符号和大小,可能还有 2 的补码)或者是 -LLONG_MAX-1 (可能是 2 的补码)。 2 的补码机器可能会使用该额外值作为陷阱表示,就像 1 的补码、符号和幅度机器可能会使用负零作为陷阱表示一样。因此,如果标准要求实现使用其中一种方案,那么您的问题的答案是"is"。

C 标准(C++ 标准在很多地方都遵循)要求 2 的补码、1 的补码或符号和大小:

C11 6.2.6.2 Integer types:

If the sign bit is one, the value shall be modified in one of the following ways:

— the corresponding value with sign bit 0 is negated (sign and magnitude);
— the sign bit has the value −(2M ) (two’s complement);
— the sign bit has the value −(2M − 1) (ones’ complement).

C++ 标准似乎更开放一些:

C++14 3.9.1 Fundamental types:

The representations of integral types shall define values by use of a pure binary numeration system51. [Example: this International Standard permits 2’s complement, 1’s complement and signed magnitude representations for integral types. —end example]

脚注 51 定义了“纯二进制计数系统”的含义,似乎排除了十进制系统和偏移系统(其中 0 并非所有位都为零):

51) A positional representation for integers that uses the binary digits 0 and 1, in which the values represented by successive bits are additive, begin with 1, and are multiplied by successive integral power of 2, except perhaps for the bit with the highest position.

实际上,剩下的就是 2 的补码、1 的补码以及符号和大小:与 C 标准强制要求的相同方案。我怀疑供应商会接触使用新的 21 世纪方案来表示整数并以某种方式满足 C++ 标准法则(但因此不符合 C)的机器。

关于c++ - C++ 标准对带符号整数类型的最小值和最大值之间关系的保证是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38466124/

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