遍历数组

Posted mld1040871703

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历数组相关的知识,希望对你有一定的参考价值。

遍历数组:就是获取数组中的每个元素

使用for循环实现

遍历二维数组

1,双for循环

2,双foreach循环

//双for循环
public class source {
    public static void main(String[] args) {
        int a[][]=new int[][]{{1},{2,3},{3,4,5}};
             for(int i=0;i<a.length;i++){
                   for(int j=0;j<a[i].length;i++){
                             System.out.print(a[i][j]);
                  }
                        System.out.println();
           }
                   for(int k[]:a){//将所有行元素提取出来
                           for(int c:k ){//将行中所有列元素提取出来
                              System.out.println(c);
                                   }
                                      System.out.println();    
                            }
                  }
    
        }

 

以上是关于遍历数组的主要内容,如果未能解决你的问题,请参考以下文章

Java数组的--遍历

GMSMarker 信息窗口内容(片段)未更新

817. Linked List Components - LeetCode

VSCode自定义代码片段—— 数组的响应式方法

关于数组的一些经常使用函数

VSCode自定义代码片段10—— 数组的响应式方法