Java自学-数组 增强型for循环

Posted jeddzd

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java自学-数组 增强型for循环相关的知识,希望对你有一定的参考价值。

Java 中如何使用增强for循环

增强型for循环在遍历一个数组的时候会更加快捷

步骤 1 : 增强型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循环的主要内容,如果未能解决你的问题,请参考以下文章

关于java自学的内容以及感受

Java自学笔记第二十二天

java 增强for循环为啥输出的是一串地址值?

Java 增强 for 循环

Java 增强for循环

自学Java用哪本书好?