以上哪种创建数组不正确()
A:int[] a = {1,2,3,4,5}
B:int[] a = new int[2]
C:int[][] b = new int[][2]
D:int[][] b = new int[2][];
出自:计算机科学