Bootstrap

java中Integer类型转换为byte类型

integer是不能直接转换为byte类型的,但是可以转换成int,然后强制转换成byte。


Integer i = 1;

byte b = (byte)i.intValue();

;