*使用while循环遍历数组创建索引和自增索引值
Posted 谈谈吧
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了*使用while循环遍历数组创建索引和自增索引值相关的知识,希望对你有一定的参考价值。
package com.chongrui.test;
/*
*使用while循环遍历数组
*
*
* */
public class test {
public static void main(String[] args) {
// TODO Auto-generated method stub
String[] aves = new String[]{"白路","丹顶鹤","百灵"};//创建鸟类数组
int index = 0;//创建索引
System.out.println("我家花园有这种各类的鸟");
while(index<aves.length){
System.out.println(aves[index++]+" ");//自增索引值
}
}
}
======================
我家花园有这种各类的鸟
白路
丹顶鹤
百灵
以上是关于*使用while循环遍历数组创建索引和自增索引值的主要内容,如果未能解决你的问题,请参考以下文章
PHP遍历数组常用方式(for,foreach,while,指针等等)