• 大小: 2.15KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-02-20
  • 语言: Java
  • 标签:

资源简介

Java 使用while与自增运算符循环遍历数组(基础篇-实例033).zip

资源截图

代码片段和文件信息

/**
 * @author 李钟尉
 */
public class ErgodicArray {
    public static void main(String[] args) {
        // 创建鸟类数组
        String[] aves = new String[] { “白鹭“ “丹顶鹤“ “黄鹂“ “鹦鹉“ “乌鸦“ “喜鹊“
                “布谷鸟“ “灰纹鸟“ “百灵鸟“ };
        int index = 0;// 创建索引变量
        System.out.println(“我的花园里有很多鸟,种类大约包括:“);
        while (index < aves.length) {// 遍历数组
            System.out.println(aves[index++]);// 自增索引值
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         301  2010-07-08 09:28  .classpath
     文件         379  2010-09-07 10:55  .project
     文件         635  2010-07-08 09:28  .settings\org.eclipse.jdt.core.prefs
     文件         900  2013-11-21 08:40  bin\ErgodicArray.class
     文件         506  2010-07-08 10:12  src\ErgodicArray.java

评论

共有 条评论