The elements in the collection are ordered.
The collection is guaranteed to be immutable.
The elements in the collection are guaranteed to be unique.
The elements in the collection are accessed using a unique key.
The elements in the collections are guaranteed to be synchronized.
我的翻译如下:
1.The elements in the collection are ordered.
集合中的元素已经排好序了。
2. The collection is guaranteed to be immutable.
集合保证不可变
3. The elements in the collection are guaranteed to be unique.
集合中的元素保证独特
4. The elements in the collection are accessed using a unique key.
集合中的元素使用独特的键
5. The elements in the collections are guaranteed to be synchronized.
集合中的元素保证是同步的。
D选项是Map的特性。而ArrayList是有序可重复的。
这里的有序并非是指按顺序,而是指list插入过程中按顺序插入。而Map则会按照一定的算法插入到相应的位置中去。