Queue和ArrayList有什么不同?
1)C#用集合定义在System.Collections和System.Collections.Generic空间中。
2)常用的集合有Queue,Stack,LinkedList,ArrayList,Hashtable, SortedList, StringDictionary等可以看出, ArrayList是集合的一种;
3)ArryList与其他类型的集合的区别在于:ArryList类允许通过下标索引方式存取集合元素,即可以像存取数组元素那样来存取ArrayList集合元素;其他类型的集合没有这种存取集合元素的方式!