java简单数组定义
Posted Jachin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java简单数组定义相关的知识,希望对你有一定的参考价值。
public class Shuzu {
static int[] array = new int[] { 32, 2, 2, 5, 45, };
int[] array1[] = new int[10][20];
int[][] array2=new int[2][3];
int array3[][] =new int[2][3];
int[][] c = new int[][]{{2,2},{3,3},{2,3}};
int[][] c1 = {{2,2},{3,3},{2,3}};
public static void main(String[] args) {
for (int i : array) {
System.out.print(i + "\t");
}
System.out.println();
int[] a = { 32, 2, 5, 2 };
for (int i : a) {
System.out.print(i + "\t");
}
System.out.println();
int[] b = new int[5];
}
}
以上是关于java简单数组定义的主要内容,如果未能解决你的问题,请参考以下文章