本帖最后由 何苦似梦离 于 2014-2-17 11:23 编辑
- import java.util.Collection;
- import java.util.ArrayList;
- import java.util.Iterator;
- import java.util.LinkedList;
- class test
- {
- public static void main(String[] args)
- {
- Collection<Integer> collection = new LinkedList<Integer>();
- collection.add(4);
- collection.add(1);
- collection.add(7);
- collection.add(5);
- Iterator<Integer> it = collection.iterator();
-
- for(Integer t : it) //为什么编译提示这里不用使用高级for
- {
- System.out.println(t);
- }
- System.out.println(collection);
- }
- }
复制代码
|