用法示例:
>>> s = 'Hello world'>>> t = buffer(s, 6, 5)>>> t<read-only buffer for 0x10064a4b0, size 5, offset 6 at 0x100634ab0>>>> print tworld
在这种情况下,缓冲区是一个子字符串,从位置6开始,长度为5,并且不占用额外的存储空间-它引用字符串的一部分。
这对于像这样的短字符串不是很有用,但是在使用大量数据时可能是必需的。这个例子使用了可变的
bytearray:
>>> s = bytearray(1000000) # a million zeroed bytes>>> t = buffer(s, 1) # slice cuts off the first byte>>> s[1] = 5 # set the second element in s>>> t[0] # which is now also the first element in t!'x05'
如果您想对数据有多个视图并且不想(或不能)在内存中保存多个副本,这将非常有用。
请注意,尽管您可以在Python
2.7中使用它,但是
buffer已经被
memoryviewPython
3中的更好名称所代替。
还要注意,如果不深入研究C API,就无法为自己的对象实现缓冲区接口,即,不能在纯Python中做到这一点。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)