[关闭]
@tsing1226 2016-10-13T18:20:32.000000Z 字数 296 阅读 762

java 数组

java中数组遍历所有元素


两种方式:

方式1:标准for循环遍历数组

  1. int [] nums = new int [] {0,1,2,3,4,5,6,7,8,9};
  2. for(int i=0;i<11;i++){
  3. System.out.println(num[i]);
  4. }

方式2:for-each循环遍历数组

语法:

  1. for(<迭代变量声明>:<数组>){
  2. 语句;
  3. }
  1. int [] nums = new int [] {0,1,2,3,4,5,6,7,8,9};
  2. for (int n : nums) {
  3. System.out.println(n);

参考文献

http://javabc.baike.com/article-410951.html

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注