如何在Flex中获取ArrayCollection的内存大小

发布于 2024-08-19 23:33:03 字数 193 浏览 9 评论 0原文

我构建了一个图像缓存,它是一个包含图像的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不乱于心 2024-08-26 23:33:03

我不确定你可以。我的建议是创建一个基于 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文