首页题库练习题目详情
Java语言程序设计单选题中等

以下哪项是二维数组的正确初始化方式?

Aint[][] arr = new int[3] [ ];
Bint[][] arr = new int[3][4];
Cint[][] arr = new int [ ][4];
D以上说法都正确。