如何在Flex中获取ArrayCollection的内存大小
我构建了一个图像缓存,它是一个包含图像的 ArrayCollection。我构建了一个功能,使缓存最多可以容纳 250 张图像。但是,图像可以具有不同的大小,因此最好限制 ArrayCollection 中所有图像的总内存大小。
有谁知道如何在不循环 ArrayCollection 中的所有项目的情况下获取 ArrayCollection 的总内存大小?
I have built an image cache which is an ArrayCollection containing images. I have built functionality so that the cache can hold a max of 250 images. However, the images can be of a different size, so it's better to limit the total memory size of all images in the ArrayCollection.
Does anyone know how I can get the total memory size of an ArrayCollection without looping through all the items in the ArrayCollection?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定你可以。我的建议是创建一个基于 ArrayCollection(例如 ImageCacheCollection)的新集合类,用于跟踪集合的当前内存大小及其内存限制。在将图像添加到集合之前,您首先要验证是否不会超出内存限制。如果不是,则将图像添加到集合中,在此过程中将图像的文件大小添加到集合的当前内存大小中。
I'm not sure you can. My advice is to create a new collection class based on ArrayCollection (say, ImageCacheCollection) that keeps track of the collection's current memory size and its memory limit. Before you add an image to the collection you first verify that the memory limit won't be exceeded. If it isn't, you add the image to the collection, in the process adding the image's file size to the collection's current memory size.