标签: java arrays initialization constants
以下代码行编译。 Java允许这种快捷方式。
int[] az = {1,2,3,4,5};
但以下不编译,为什么?
int[] ay; ay = {1,2,3,4,5};