标签:system array vector 迭代 顺序 反转 抛出异常 class val
主要提供了List、Queue、Set、Stack、Map等数据结构。当中List、Queue、Set、Stack都是继承自Collection接口.
主要特点。集合中元素唯一。
该接口有两个实现类:HashSet和TreeSet。当中TreeSet实现了SortedSet接口,因此TreeSet容器中的元素是有序的。
同一时候,它能够保存反复的对象。LinkedList、ArrayList、Vector都实现了List接口。
import java.util.*; public class Test{ public static void main(String args[]){ List<Integer> list = new LinkedList<Integer>(); int array[]={1,7,2,3}; for(int i=0;i<array.length;i++){ list.add(new Integer(array[i])); } Collections.sort(list); for(int i=0;i<list.size();i++){ System.out.println(list.get(i)); } } }
标签:system array vector 迭代 顺序 反转 抛出异常 class val
原文地址:http://www.cnblogs.com/slgkaifa/p/6913904.html