gpt4 book ai didi

python - python中无符号长溢出的字节总和

转载 作者:行者123 更新时间:2023-11-28 22:07:22 24 4
gpt4 key购买 nike

如何将这段C代码翻译成Python>=2.6?

unsigned long memSum(unsigned char *p, unsigned long len)
{
unsigned long i, sum=0;

for(i=0; i<len; i++)
sum = sum + *p++;

return sum;
}

当然

f=open("file_to_sum",'rb')
m = f.read()
f.close()
sum( array.array('B', m) )

不工作

最佳答案

如果您需要在溢出时回绕,只需在末尾对 MAX_LONG 取模即可。

关于python - python中无符号长溢出的字节总和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2113118/

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