20210908-迭代遍历
2021/9/8 23:07:30
本文主要是介绍20210908-迭代遍历,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目录
1、遍历
1.1 for循环
1.2 foreach(增强型for循环)
1.3 iterator
1、遍历
在java中遍历有三种方式:fo循环遍历,foreach(加强型for循环),iterator。
1.1 for循环
通过ArrayList一个简单的实例展示for循环遍历。
import java.util.ArrayList; public class ForDemo { public static void main(String[] args) { ArrayList<String> arr = new ArrayList<String>(); arr.add("peppa"); arr.add("pedro"); arr.add("suzy"); for(int i = 0; i < arr.size(); i++) { } System.out.println(arr); } }
1.2 foreach(增强型for循环)
在第一题的基础上对数据进行遍历,通过三目运算符去掉最后一个空格和逗号。
import java.util.ArrayList; public class ForDemo { public static void main(String[] args) { ArrayList<String> arr = new ArrayList<String>(); arr.add("peppa"); arr.add("pedro"); arr.add("suzy"); System.out.print("["); for(String s : arr) { System.out.print(((s != null) ? ", " : "") + s); } System.out.print("]"); } }
1.3 iterator
import java.util.ArrayList; import java.util.Iterator; public class ForDemo { public static void main(String[] args) { ArrayList<String> arr = new ArrayList<String>(); arr.add("peppa"); arr.add("pedro"); arr.add("suzy"); //获取迭代器 Iterator<String> iterator = arr.iterator(); //循环输出 System.out.print("["); while(iterator.hasNext()) { String str = iterator.next(); if (arr.indexOf(str) != arr.size() - 1) { System.out.print(str + ", "); } else { System.out.print(str); } } System.out.print("]"); } }
这篇关于20210908-迭代遍历的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-26Mybatis官方生成器资料详解与应用教程
- 2024-11-26Mybatis一级缓存资料详解与实战教程
- 2024-11-26Mybatis一级缓存资料详解:新手快速入门
- 2024-11-26SpringBoot3+JDK17搭建后端资料详尽教程
- 2024-11-26Springboot单体架构搭建资料:新手入门教程
- 2024-11-26Springboot单体架构搭建资料详解与实战教程
- 2024-11-26Springboot框架资料:新手入门教程
- 2024-11-26Springboot企业级开发资料入门教程
- 2024-11-26SpringBoot企业级开发资料详解与实战教程
- 2024-11-26Springboot微服务资料:新手入门全攻略