- import java.util.*;
- class ArrayList001
- {
- public static void main(String[] args)
- {
- //ystem.out.println("Hello World!");
- ArrayList al=new ArrayList();//创建一个集合
- al.add("hello");//添加元素
- al.add("hello0");
- al.add("world");
- al.add("002");
- for(Iterator it=al.iterator();it.hasNext();)//获取迭代器 判断集合中的元素
- {
- Object obj=it.next();
- if(obj.equals("world"))
- {
- // it.remove();
- //al.add("huwenpeng");
- it.add("huwenp");
- }
- sop("obj="+obj);//这里的打印有用吗?
- }
- sop(al);
- }
- public static void sop(Object obj)//封装打印方法
- {
- System.out.println(obj);
- }
- }
复制代码
|
|