如何在动作脚本中使用哈希集
现在我正在使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要下载 多边形数据结构。 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.
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?