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(
相關文章
相關標籤/搜索