gpt4 book ai didi

python - 清除 bytearray 的正确 python 方法

转载 作者:太空狗 更新时间:2023-10-30 00:31:33 25 4
gpt4 key购买 nike

我想念 memset。我在一个类中有一个帧缓冲区,其中包含来自其他一些操作的数据,现在我想将该帧缓冲区中的所有内容清除为 0x00 或 0xFF。我没有在文档中看到明确的方法,有一个 zfill 方法可能有用。我考虑过再次调用字节数组的 init 方法,但想知道这是否会给我带来一些内存问题。

我正在使用 python 2.7。

最佳答案

Python 不是 C,在这里您完全不需要担心内存 。你只需要做:

a = bytearray("abcd") # initialized it with real data

a = bytearray(5) # just a byte array of size 5 filled with zeros

关于python - 清除 bytearray 的正确 python 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36653762/

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