考虑以下代码段:
public class TestBench {
private static final short matrix[][] = new short[][] {new short[] {}};
public static void main (String args[]) {
matrix = new short[][] {new short[] {}}; // illegal
matrix[0] = new short[] {}; // ok
}
}
有没有办法使那个子数组最终?在阅读类似的问题时,我意识到我可以使用自定义类来做到这一点,但我对使用原始类型感到好奇。
提前致谢。