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。

posted on 2017-04-14 12:46  呵呵静  阅读(7243)  评论(1编辑  收藏  举报