这种二维数组,见过么。。。 不规则数组,太牛叉了的Java。。。
- <p>public class LabelGoto {
- public static void main(String[] args) throws IOException
- {
-
- char[][] cStarArr = new char[Max][];//这里没有定义列数。。
- for(int index = 0; index < Max; index++)
- {
- cStarArr[index] = new char[index + 1];//居然可以随机定义每行的列数
- Arrays.fill(cStarArr[index], '*');
- }
-
-
- //firstPrintResult
- for(char[] cRow : cStarArr)
- {
- for(char cTemp : cRow)
- {
- System.out.printf("%4c", cTemp);
- }
- System.out.println();
- }
-
- System.out.println(Arrays.deepToString(cStarArr));
-
- }
- </p><p> final static private int Max = 6;
- }
- ============================</p><p>打印结果:</p><p> *
- * *
- * * *
- * * * *
- * * * * *
- * * * * * *</p>
复制代码
|
|