//好吧有道理
Byte b = (byte)207;
System.out.println(b); //value = 207
//ok 没有意义
Integer x = Integer.parseInt("11001111", 2); //207
Byte sens = (byte)x.intValue(); //207
System.out.println(sens); //Value = -49
System.out.println(sens.intValue()); //Value = -49
这里发生了什么?
那么如何声明/表示一个值高于 127 的 8 位字节