java-for循环遍历数组
Posted 紫陌曦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java-for循环遍历数组相关的知识,希望对你有一定的参考价值。
格式:
for( 数据类型 变量名 : 数组或者集合 ){
sop(变量);
}
public static void function_1(){ //for对于对象数组遍历的时候,能否调用对象的方法呢 String[] str = {"abc","itcast","cn"}; for(String s : str){ System.out.println(s.length()); } }
实现for循环,遍历数组
* 好处: 代码少了,方便对容器遍历
* 弊端: 没有索引,不能操作容器里面的元素
public static void function(){ int[] arr = {3,1,9,0}; for(int i : arr){ System.out.println(i+1); } System.out.println(arr[0]); }
增强for循环遍历集合
public static void function_2(){ ArrayList<Person> array = new ArrayList<Person>(); array.add(new Person("a",20)); array.add(new Person("b",10)); for(Person p : array){ System.out.println(p);// System.out.println(p.toString()); } }
以上是关于java-for循环遍历数组的主要内容,如果未能解决你的问题,请参考以下文章