gpt4 book ai didi

ios - 在swift iOS中计算高字节和低字节?

转载 作者:行者123 更新时间:2023-11-29 05:36:00 25 4
gpt4 key购买 nike

如何计算任意数字的highBytelowByte

示例:

let mValue = 26513

mValue 的十六进制表示形式 = 0x6791

那么如何找到上面数字的高字节和低字节呢?

最佳答案

Updated for swift :

以下解决方案对我有用:

    let mVal = 26513 // hex value of mVal = 0x6791 (UInt16)
let highByte = (mVal >> 8) & 0xff // hex value of highByte = 0x0067 (UInt8)
let lowByte = mVal & 0xff // hex value of lowByte = 0x0091 (UInt8)

print("highByte: \(highByte)\nLowByte: \(lowByte)")

关于ios - 在swift iOS中计算高字节和低字节?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57035368/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com