byte类型的127+1=-128?
Posted 呵呵静
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了byte类型的127+1=-128?相关的知识,希望对你有一定的参考价值。
1 public class Test2 {
2 public void add(Byte b) {
3 b = b++;
4 }
5
6 public void test() {
7 Byte a = 127;
8 Byte b = 127;
9 add(++a);
10 System.out.println("a = "+a);
11 add(b);
12 System.out.println("b = "+b);
13 }
14
15 public static void main(String[] args) {
16 Test2 test2=new Test2();
17 test2.test();
18 }
19 }
运行结果:
a = -128
b = 127
分析:首先byte的范围为-128~127。字节长度为8位,最左边的是符号位,而127的二进制为:0111 1111,所以执行++a时,0111 111变为1000 0000,而128的二进制为:1000 0000,即为127+1=-128;而add(b)其实为add(127),而b=b++其实为b=127,b++;则b=127。
以上是关于byte类型的127+1=-128?的主要内容,如果未能解决你的问题,请参考以下文章