符号位:在二进制表示中,用来表示一个数是正还是负的那一位(常见于有符号整数与浮点数)。通常0 表示非负,1 表示负(具体规则取决于编码方式,如二进制补码或 IEEE 754 浮点标准)。
/ˈsaɪn ˌbɪt/
The sign-bit is 0, so the number is positive.
符号位是 0,所以这个数是正数。
In two’s complement, flipping the sign-bit alone does not correctly negate a value because the representation depends on all bits.
在二进制补码中,仅仅翻转符号位并不能正确地取负,因为数值表示依赖所有位的组合。
sign(符号、正负号)+ bit(二进制位)。该词来自计算机科学语境,用于描述二进制数值表示中“负责表达正负”的那一位;随着补码整数与 IEEE 754 浮点数的普及而广泛使用。