本文介绍了符号字符范围的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为什么符号字符的范围为-128到127,但不是-127到128?

Why the range of signed character is -128 to 127 but not -127 to 128 ?

推荐答案

这是因为这样的编码(这是不是很普遍的今天,但在昔日,这是),有单独的值+ 0和-0,因此对于一个8位量的范围是-127到+127

In ones' complement encoding (which is not very common nowadays, but in the olden days, it was), there were separate values for +0 and -0, and so the range for an 8-bit quantity is -127 to +127.

这篇关于符号字符范围的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 08:36