public class Test10 {
public static void main(String[] args) {
ArrayList<Integer> al = new ArrayList<Integer>(); //创建List集合
for (int i = 1; i <= 100; i++) { //循环往集合中添加1~100的数据
al.add(i);
}
int count = 0; //s初始化遍历集合中元素的次数
while (al.size() > 1) { //当集合的长度大于1时继续遍历集合中的元素
Iterator<Integer> it = al.iterator(); //获取最新集合的迭代器
while (it.hasNext()) {
int n = it.next(); //定义n表示具体元素
count++;