• 遍历集合List几种方式


    import java.util.ArrayList;   

    • import java.util.Iterator;   
    • import java.util.List;   
    •   
    • /**  
    •  *遍历集合List  
    •  * @author 够潮  
    •  *  
    •  */  
    • public class Demo35 {   
    •   
    •     /**  
    •      * @param args  
    •      */  
    •     public static void main(String[] args) {   
    •        
    •         List list = new ArrayList();   
    •         list.add("gouchao");   
    •         list.add("gouli");   
    •         //下标   
    •         for(int i = 0 ; i< list.size();i++){   
    •                
    •             System.out.println(list.get(i));   
    •         }   
    •         //for- each   
    •         for(Object o:list){   
    •             System.out.println(o);   
    •         }   
    •         //迭代器   
    •         Iterator it = list.iterator();   
    •         while(it.hasNext()){   
    •             System.out.println(it.next());   
    •         }   
    •         //Object数组    
    •         Object o[];   
    •         o = list.toArray();   
    •         for(int i =  0 ; i <o.length;i++){   
    •             System.out.println(o[i]);   
    •         }   
    •         //toString   
    •         System.out.println(list.toString());   
    •   
    •     }   
    •   
    • }  
  • 相关阅读:
    grep 和vim用法
    【python】初识函数
    【python】 文件相关操作
    【python】基础数据类型相关知识点补充和深浅拷贝
    【python】is和==的区别以及encode()和decode()
    python中的字典以及相关操作
    python列表元祖以及range
    python基本数据类型
    python基础逻辑运算
    了解Python与安装Python解释器
  • 原文地址:https://www.cnblogs.com/huideng/p/4498101.html
Copyright © 2020-2023  润新知