gpt4 book ai didi

python - 将16位的最高字节转换为python中的signed int

转载 作者:太空宇宙 更新时间:2023-11-04 07:03:05 25 4
gpt4 key购买 nike

我使用 os.system 来运行 make 命令

os.system('make -C mydir/project all')

我想看看 make 是否失败。系统文档指出返回代码的格式与 wait()

相同
Wait for completion of a child process, and return a tuple containing its pid 
and exit status indication: a 16-bit number, whose low byte is the signal number
that killed the process, and whose high byte is the exit status (if the signal
number is zero); the high bit of the low byte is set if a core file was produced.

因此,如果 make(或其他应用程序)返回 -1,我必须将 0xFFxx(我并不关心被调用的 pid)转换为 -1。右移后,我得到 0xFF,但我无法将其转换为 -1,它始终打印 255。

那么,在 python 中,我如何将 255 转换为 -1,或者我如何告诉解释器我的 255 实际上是一个 8 位有符号整数?

最佳答案

if number > 127:
number -= 256

关于python - 将16位的最高字节转换为python中的signed int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11056821/

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