python中的缓冲区意味着什么

前端之家收集整理的这篇文章主要介绍了python中的缓冲区意味着什么前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在struct的python文档中,使用了单词buffer而没有解释:

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)).

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

最佳答案
它是一个内存缓冲区:在Python 2中,一个字符串(str),在Python 3中,一个二进制字符串(字节),或者一个用buffer构造的对象.
原文链接:https://www.f2er.com/python/439122.html

猜你在找的Python相关文章