1. 程式人生 > >Java二維陣列的三種表示形式

Java二維陣列的三種表示形式

表示形式一: int[][] x;

表示形式二: int x[][]

表示形式三:int[] x[]---this kind of express is less in use ,but can be encounterd at the interview

example : int[] x,y[] : indicate that x is 一維,the y is 二維