本帖最后由 天方地圆 于 2014-3-4 22:59 编辑
- class TreeSetDemo
- {
- public static void main(String[] args)
- {
- TreeSet ts = new TreeSet();
- ts.add("cba");
- ts.add("abcd");
- ts.add("aaa");
- ts.add("bca");
- Iterator it = ts.iterator();
- while (it.hasNext())
- {
- System.out.println(it.next());
- }
- }
- }
复制代码
Iterator it = ts.iterator(); 这句话,是什么意思?
|