JAVA求BYTE[2]转换为short,float代码

rt本人新手,请各位高手不吝赐教
2024-11-22 04:38:54
推荐回答(2个)
回答(1):

【【【使用方法,你的byte.floatValue()和byte.shortValue()】】】
floatValue
public float floatValue()作为一个 float 返回此 Byte 的值。

指定者:
类 Number 中的 floatValue
返回:
转换为 float 类型后该对象表示的数值。
------------------------------
shortValue
public short shortValue()作为一个 short 返回此 Byte 的值。

覆盖:
类 Number 中的 shortValue
返回:
转换为 short 类型后该对象表示的数值。

回答(2):

(short) [2]
(floar)[2]
强制类型转化。