码迷,mamicode.com
首页 > 其他好文 > 详细

集合类练习

时间:2016-03-09 20:54:55      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

将1~100之间的所有正整数存放在一个List集合里,并将集合中索引位置是10的对象从集合中移除

技术分享
package org.hanqi.array;

import java.util.*;

public class Test {

    public static void main(String[] args) {
        
        List<Object>  a=new ArrayList<Object>();
        
        for(int i=1;i<=100;i++)
        {
            a.add(i);
        }
        
        System.out.println("遍历方式一");
        for(Object t: a)
        {
            System.out.print(" "+t);
        }
        System.out.println("");
        
        System.out.println("遍历方式二");
    
        for(int j=0;j<a.size();j++)
        {
            System.out.print(" " +a.get(j));
        }
        System.out.println("");
        
        System.out.println("遍历方式三:迭代器");
        
        Iterator it=a.iterator();
        
        while(it.hasNext())
        {
            Object t=it.next();
            
            System.out.print(" " +t);
        }
        
        System.out.println("");
        
        System.out.println("移除索引位置为10的对象的结果:");
        
        //移除索引位置为10的对象
        
        a.remove(10);
        
        for(Object t: a)
        {
            System.out.print(" "+t);
        }
    }

}
View Code

技术分享

技术分享

集合类练习

标签:

原文地址:http://www.cnblogs.com/wangchuanqi/p/5259360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!