python中的缓冲区是什么意思

发布于 2024-10-28 04:28:58 字数 438 浏览 5 评论 0 原文

在 struct 的 python 文档中,使用“缓冲区”一词时没有任何解释:

http://docs.python。 org/library/struct.html

struct.unpack_from(fmt, buffer[,offset=0])

解压缓冲区 根据给定的格式。这 结果是一个元组,即使它包含 恰好是一件物品。缓冲区必须 至少包含数据量 格式要求 (len(buffer[offset:]) 必须至少为 计算大小(fmt))。

这里的缓冲区是什么意思。字符串是缓冲区还是文件描述符? “缓冲区”必须具有哪些方法?

In the python documentation for struct, the word buffer is used without explanation:

http://docs.python.org/library/struct.html

struct.unpack_from(fmt, buffer[,offset=0])

Unpack the buffer
according to the given format. The
result is a tuple even if it contains
exactly one item. The buffer must
contain at least the amount of data
required by the format
(len(buffer[offset:]) must be at least
calcsize(fmt)).

What is meant here with a buffer. Is a string a buffer, or a file descriptor? What methods must a 'buffer' have?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

通知家属抬走 2024-11-04 04:28:58

它是一个内存缓冲区:在 Python 2 中,是一个字符串 (str),在 Python 3 中,是一个二进制字符串 (bytes),或者是使用 缓冲区

It's a memory buffer: in Python 2, a string (str), in Python 3, a binary string (bytes), or alternatively an object constructed with buffer.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文