仍然在使用 Haxe 并正在寻找方法来拥有一个类似数组的只读集合,我可以在编译时为其指定一个类型
因此,理想情况下,我需要以下内容:
var collection:Collection<ItemType>;
var item:ItemType = collection[3];//or
var other:ItemType = collection.getAt(3);
//also, it would be good if it was iterable
for (item in collection)
{
//stuff
}
所以,就像一个数组,但只读。有人能给我一些指点吗,拜托。
非常感谢