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

Java之数组遍历

时间:2017-11-03 14:09:12      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:stat   basic   foreach   log   string   遍历   for   pre   pack   

 

 1 package basic;
 2 //数组遍历方法
 3 public class ForEach {
 4 
 5     public static void main(String[] args) {
 6         // 原始数组
 7         String strs[] = { "a", "b", "c", "d" };
 8         
 9         // 数组输出常规方法
10         for (int x = 0; x < strs.length; x++) {
11             System.out.print(strs[x] + "、");
12         }
13         System.out.println(" ");
14         // foreach输出-遍历数组
15         for (String s : strs) {
16             System.out.print(s + "、");
17         }
18     }
19 
20 }

 

Java之数组遍历

标签:stat   basic   foreach   log   string   遍历   for   pre   pack   

原文地址:http://www.cnblogs.com/gongxr/p/7777709.html

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