位置: 编程技术 - 正文
推荐整理分享Python 内置函数memoryview(obj)的具体用法(python 内置函数名作为变量名),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:python内置函数没有append怎么办,python 内置函数怎么读取s3文件,python 内置函数高级玩法,python 内置函数什么用来返回序列中的最大元素,python 内置函数 可以返回列表,python 内置函数名作为变量名,python内置函数没有返回值吗为什么,python 内置函数名作为变量名,内容如对您有帮助,希望把文章链接给更多的朋友!
memoryview() 函数返回给定参数的内存查看对象(Momory view)。
语法
memoryview 语法:memoryview(obj)
参数说明:obj -- 对象
返回值:返回元组列表。
英文文档:
class memoryview(obj)
memoryview objects allow Python code to access the internal data of an object that supports the buffer protocol without copying.Create a memoryview that references obj. obj must support the buffer protocol. Built-in objects that support the buffer protocol include bytes and bytearray.
说明:
1. 函数功能返回内存查看对象,实际上是内存查看对象(Momory view)的构造函数。
2. 所谓内存查看对象,是指对支持缓冲区协议的数据进行包装,在不需要复制对象基础上允许Python代码访问。
3. Python内置对象中支持缓冲区协议的对象有bytes和bytearray。
示例
友情链接: 武汉网站建设