本帖最后由 孙娜 于 2013-3-20 12:30 编辑
- 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());
- }
- }
- }
复制代码 关于类变量不是很理解,上面注释的依据代码,谁能详细讲解一下
|