下列选项中,能够正确初始化数组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};
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。