Float和Int转Byte数据

在 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 将整数值的各个字节存储到字节数组中。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值