单项选择题

A.int[4] arrInt = new int[]{80,90,91,95};
B.int[] arrInt = new int[]{80,90,91,95};
C.int[] arrInt = new int[4]{80,90,91,95};
D.以上都正确