调整(收缩)ctype数组的大小

Resize (shrink) a ctypes array(调整(收缩)ctype数组的大小)
本文介绍了调整(收缩)ctype数组的大小的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

假设我有一个10元素数组:

from ctypes import *
arr = c_float * 10

,我想把它缩小到5个元素。我试着这样做:

resize(arr, sizeof(c_float) * 5)
arr = (c_float * 5).from_address(addressof(arr))

但是我得到了一个ValueError: minimum size is XXX异常,这意味着我不能缩小内存,只能增加内存。如果我真的想要,有没有可能用一个聪明的黑客来克服这个限制?

推荐答案

这似乎工作正常:

>>> float_10 = c_float * 10
>>> float_5 = c_float * 5
>>> a1 = float_10(range(10))
>>> a2 = float_5.from_address(addressof(a1))
>>> print list(a1)
[0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0]
>>> print list(a2)
[0.0, 1.0, 2.0, 3.0, 4.0]

编辑:这实际上不会调整原始列表的大小,addressof(a1)将等于addressof(a2),因此列表中未使用的位会留在内存中...

这篇关于调整(收缩)ctype数组的大小的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)