• Collection集合的三种遍历方式


    package cn.itcast_01;
    import java.util.ArrayList;
    import java.util.Iterator;
    /*
     * ArrayList存储字符串并遍历。要求加入泛型,并用增强for遍历。
     * A:迭代器
     * B:普通for
     * C:增强for
     */
    public class ArrayListDemo {
     public static void main(String[] args) {
      // 创建集合对象
      ArrayList<String> array = new ArrayList<String>();
      // 创建并添加元素
      array.add("hello");
      array.add("world");
      array.add("java");
      // 遍历集合
      // 迭代器
      Iterator<String> it = array.iterator();
      while (it.hasNext()) {
       String s = it.next();
       System.out.println(s);
      }
      System.out.println("------------------");
      // 普通for
      for (int x = 0; x < array.size(); x++) {
       String s = array.get(x);
       System.out.println(s);
      }
      System.out.println("------------------");
      // 增强for
      for (String s : array) {
       System.out.println(s);
      }
     }
    }
  • 相关阅读:
    字符编码与函数
    linux打印彩色字
    企业级docker仓库Harbor部署
    PyPI使用国内源
    CentOS 7.2 升级内核支持 Docker overlay 网络模式
    购物车2
    购物车
    定制 cobbler TITLE 信息
    06.密码错误3次锁定
    05.for循环语句
  • 原文地址:https://www.cnblogs.com/rong123/p/10163788.html
Copyright © 2020-2023  润新知