Java中使用增强for循环的实例方法

时间:2021-05-20

增强型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循环的实例方法,感谢大家的阅读和对的支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章