java数组06二维数组

fireflamerain / 2023-08-19 / 原文

二维数组

  • 多维数组可以看成是数组的数组,比如二维数组就是一个特殊的一维数组

  • 二维数组

    int a[][]=new int[2][5];