黑马程序员技术交流社区
标题:
关于数组,你知多少
[打印本页]
作者:
李金中
时间:
2014-2-23 20:10
标题:
关于数组,你知多少
这种二维数组,见过么。。。 不规则数组,太牛叉了的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>
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2