当前位置: 代码迷 >> 综合 >> List 基本知识
  详细解决方案

List 基本知识

热度:16   发布时间:2024-01-21 17:24:17.0
import java.util.*;
public class ArrayListTest{
public static void main(String dd[]){//new了一个存储listList l=new ArrayList();//因为Collection framework只能存储对象所以new封装类l.add(new Integer(1));l.add(new Integer(2));l.add(new Integer(3));l.add(new Integer(4));Iterator it=l.iterator();//hasNext是取值取的是当前值.他的运算过程是判断下个是否有值如果有继续.while(it.hasNext()){//设it.next封装类,调用Integer的intValue方法返回值为int赋给i;int i=((Integer)it.next()).intValue();System.out.println("Element in list is :   "+i);}
}
}

  相关解决方案