试题详情

以下代码中,能够对数组正确初始化(或者默认初始化)的是()

Aint[ ] a;

Ba={11,2,3,4,5};

Cint[] a = new int[5]{1, 2, 3, 4, 5};

DInt[] a = new int[5];