下列选项中,能够正确初始化数组m的是
下列选项中,能够正确初始化数组m的是
A、int []m;
B、m={1,2,3,4,5};
C、int []m = new int[5];
D、int []m = new int[5]{1,2,3,4,5};
【正确答案】:C
Top