ArrayList类示例2
import java.util.ArrayList;
public class ArrayListDemo2 {
//放入
public static void main(String[] args){
ArrayList<Integer> a1 = new ArrayList<Integer>(); //创建一个空的ArrayList对象
for(int i=0; i<10;i++){
Integer a2 = new Integer(i);//创建一个整型的包装对象
a1.add(a2); //将此对象放入ArrayList当中
}
//拿出
System.out.println("数组中的元素");
for(int i=0;i<a1.size();i++){
Integer a3 = (Integer)(a1.get(i));//获得ArrayList中索引为i的元素
System.out.println(a3);
}
System.out.println("------------");
a1.clear(); //清空
System.out.println("数组被清空之后的情况");
System.out.println("数组的长度为"+a1.size());
if(a1.isEmpty()){ //判断是否为空
System.out.println("数组现在为空");
}else{
System.out.println("数组现在不为空");
}
}
}
本文出自 “java入门基础笔记” 博客,谢绝转载!
原文地址:http://695412.blog.51cto.com/10289099/1660562