Java中使用增强for循环的实例方法
更新时间:2019年08月23日 17:21:13 作者:半米高峰
在本篇文章里小编给大家整理是的关于Java中如何使用增强for循环的实例内容以及相关代码,需要的朋友们可以学习下。
增强型for循环在遍历一个数组的时候会更加快捷
步骤 : 增强型for循环
注:增强型for循环只能用来取值,却不能用来修改数组里的值
public class HelloWorld { public static void main(String[] args) { int values [] = new int[]{18,62,68,82,65,9}; //常规遍历 for (int i = 0; i < values.length; i++) { int each = values[i]; System.out.println(each); } //增强型for循环遍历 for (int each : values) { System.out.println(each); } } }
练习: 最大值
(用增强型for循环找出最大的那个数)
答案:
public class HelloWorld { public static void main(String[] args) { int values [] = new int[]{18,62,68,82,65,9}; //数组中的内容是 for (int each : values) { System.out.print(each+" "); } System.out.println(); int max = -1; for (int each : values) { if(each>max) max = each; } System.out.println("最大的一个值是:"+max); } }
以上就是关于Java中使用增强for循环的实例方法,感谢大家的阅读和对脚本之家的支持。
相关文章
基于@JsonSerialize和@JsonInclude注解使用方法
这篇文章主要介绍了@JsonSerialize和@JsonInclude注解使用方法,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-10-10spring MVC + bootstrap实现文件上传示例(带进度条)
本篇文章主要介绍了spring MVC + bootstrap实现文件上传示例(带进度条),非常具有使用价值,有需要的朋友可以了解一下。2017-03-03
最新评论