在 Kotlin 中,可以使用 ByteBuffer 类来实现 Float 转 Byte 数组的操作:
fun floatToBytes(value: Float): ByteArray {
val buffer = ByteBuffer.allocate(4)
buffer.putFloat(value)
return buffer.array()
}
在 floatToBytes 函数中,我们创建了一个大小为 4 的 ByteBuffer,并将 Float 值放入其中。然后通过 buffer.array() 方法获取 ByteBuffer 的字节数组表示。
Int转数组:
fun intToBytes(value: Int): ByteArray {
val result = ByteArray(4)
result[0] = (value shr 24).toByte()
result[1] = (value shr 16).toByte()
result[2] = (value shr 8).toByte()
result[3] = value.toByte()
return result
}
在 intToBytes 函数中,我们创建了一个大小为 4 的字节数组 result,然后通过位移运算符 shr 将整数值的各个字节存储到字节数组中。