遍历数组-遍历字符-串遍历集合

遍历数组

String[] arr= {"apple","red","dog"};
for(int x=0;x<arr.length;x++) {
System.out.println(arr[x]);
}

遍历字符串

String s1="apple";
for(int x=0;x<s1.length();x++) {
System.out.println(s1.charAt(x));
}

遍历集合-先把集合变成数组,再采用数组的遍历方式

Collection c=new ArrayList();
c.add("hello");
c.add("word");
c.add("java");
Object[] objs =c.toArray();
for(int x=0;x<objs.length;x++) {
     System.out.println(objs[x]);
}
//或者
for(int x=0;x<c.size();x++) {
     System.out.println(objs[x]);
}

=================================================================
在长度获取方面:
字符串有length()方法
数组有length属性
集合有size()方法,返回集合元素数

你可能感兴趣的:(遍历数组-遍历字符-串遍历集合)