zoukankan      html  css  js  c++  java
  • JAVA集合框架的学习

    package trenator.basic2;
    
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Set;
    import java.util.HashSet;
    import java.util.Iterator;
    import java.awt.Color;
    /*
     * 集合框架的学习!
     * 
     */
    public class Demo1 {
      
      public static void main(String[] args){
        String[] values={"red","white","blue","red","black","blue"};
        List list=new ArrayList();//超类型变量引用
        Set set=new HashSet();
        
        for(int i=0;i<values.length;i++){
          list.add(values[i]);
          set.add(values[i]);
        }
        System.out.println(list);
        System.out.println(set);
        //size 下标
        for(int k=0;k<list.size();k++){
          System.out.print(list.get(k)+"\t");
        }
        ///////////////////////
        //说明在list对象中,使用Iterator对象的必要性(有时候)
        Iterator it=set.iterator();//通过set接口获得Iterator对象
        while(it.hasNext()){
          System.out.println(it.next());
        }
        list.add(Color.CYAN);
        System.out.println(list);//
    //   // for(int index=0;index<list.size();index++){
    //      Object obj=list.get(index);
    //      if(obj instanceof String)
    //        list.remove(obj);
    //    }
    ////    System.out.println(list);
    //    int k=0;
    //    System.out.println(list.size());
    //    System.out.println(list.get(k));
        
        Iterator it2=list.iterator();//通过set接口获得Iterator对象
        while(it2.hasNext()){
          if(it2.next() instanceof String){
            it2.remove();
          }
        }
         System.out.println(list);
      }
    }
    
  • 相关阅读:
    hdu 2112 (最短路+map)
    poj 1502 最短路+坑爹题意
    poj 1696 Space Ant (极角排序)
    poj 1410 线段相交判断
    使用本地光盘安装Microsoft .NET Framework 3.5 for Win8.1/WinServer2012R2
    Excel REPT函数使用
    tomcat7配置虚拟目录
    Tomcat 7.0的配置
    js去除空格
    JAVABEAN连接各数据库
  • 原文地址:https://www.cnblogs.com/xiaoCon/p/2934344.html
Copyright © 2011-2022 走看看