Java的装箱与拆箱简介

Byte与byte:web Byte a= 23; //装箱,=Byte.valueOf((byte)23); byte b=a; //拆箱,=a.byteValue(); Short与short:svg Short a=23; //装箱,=Short.valueOf((Short)23); short b=a; //拆箱,=a.shortValue(
相关文章
相关标签/搜索