Byte
类将基本类型 byte
的值包装在一个对象中。一个 Byte
类型的对象只包含一个类型为 byte
的字段。
byte
和 String
的相互转换提供了几种方法,并提供了处理 byte
时非常有用的其他一些常量和方法。byte
类型可取的最大值,即 27-1。static byte addOneAndOne() {
byte a = 1;
byte b = 1;
byte c = (byte)(a + b);
//byte c = (a + b);
return c ;
}
public static void main(String args[]){
BadArithmetic bat=new BadArithmetic();
System.out.println(bat.addOneAndOne());
System.out.println(Byte.MAX_VALUE);
System.out.println(Byte.MIN_VALUE);
System.out.println(Byte.SIZE);
System.out.println(Byte.class);
}
}
输出结果如下:
127
-128
8
class java.lang.Byte
上一篇:Java中涉及byte、short和char类型的运算操作
下一篇:DAO高级编程