我是靠谱客的博主 合适未来,最近开发中收集的这篇文章主要介绍遍历集合和数组的方式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

public class Test1 {
//使用while和iterator的hasNext()与next()方式实现集合的遍历
@Test
public void test1(){
Collection collection = new ArrayList();
collection.add(123);
collection.add("AA");
collection.add(new SimpleDateFormat("HH:mm:ss:SSS").format(new Date()));
Iterator it = collection.iterator();
while (it.hasNext()){
System.out.println(it.next());
}
}
//使用增强FOR循环遍历集合
@Test
public void test2(){
Collection coll = new ArrayList();
coll.add(123);
coll.add("AA");
coll.add(new SimpleDateFormat("HH:mm:ss:SSS").format(new Date()));
for (Object obj:coll){
System.out.println(obj);
}
}
@Test
public void test3(){
String[] str = new String[]{"AA","bb","cc","dd"};
//使用增强FOR循环遍历数组
for (String s :str){
System.out.println(s);
}
System.out.println("#############");
//一般for循环遍历数组
for(int i =0;i<str.length;i++){
System.out.print(str[i]);
}
}
}

 

最后

以上就是合适未来为你收集整理的遍历集合和数组的方式的全部内容,希望文章能够帮你解决遍历集合和数组的方式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(62)

评论列表共有 0 条评论

立即
投稿
返回
顶部