如何在动作脚本中使用哈希集

发布于 2024-11-28 01:51:24 字数 211 浏览 1 评论 0原文

现在我正在使用ArrayCollection。但我想将其更改为 Set,因为我想确保重复的值出现。

var addressList:ArrayCollection = new ArrayCollection();    

一种方法是我可以使用字典并将地址存储为键。我可以只使用键来迭代。 但我正在寻找类似 Java HashSet 的实现。

Right now I am using ArrayCollection. But I want to change that to Set as I want make sure do duplicate values come.

var addressList:ArrayCollection = new ArrayCollection();    

One way is I can use Dictionary and store addresses as a key. And I can just use keys to iterate.
But I am looking for Java HashSet like implementation.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

猛虎独行 2024-12-05 01:51:25

您想要下载 多边形数据结构。 SWC 包含一个 HashSet。如果您想要 Flash 的 Java 风格模板语法,您还应该查看 Haxe

You want to download Polygonal Data Structures. The swc contains a HashSet. If you want Java-style template syntax for Flash, you should also check out Haxe.

时光礼记 2024-12-05 01:51:25

AS3 中相当于 HashMap 或 HashSet 的是 Dictionary 类,在较小程度上是 Object 类。对象键存储为字符串,而字典中的键是对象。两者都不能有重复的条目。您是否正在寻找除此之外的具体实现?

The AS3 equivalent to HashMap or HashSet is the Dictionary class, and to a lesser extent, the Object class. Object keys are stored as strings, while with Dictionary the keys are objects. You can't have duplicate entries with either. Are you looking for a specific implementation other than that?

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