码迷,mamicode.com
首页 > 编程语言 > 详细

*使用while循环遍历数组创建索引和自增索引值

时间:2017-01-01 18:11:55      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:index   while   数组   ++   new   遍历数组   rate   pack   eth   

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循环遍历数组创建索引和自增索引值

标签:index   while   数组   ++   new   遍历数组   rate   pack   eth   

原文地址:http://www.cnblogs.com/tantanba/p/6241247.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!