-->
设有数组的定义int[] a = new int[3],则下面对数组元素的引用错误的是( )。 A.a[0]=8; B.a[a.length-1]=90; C.a[3]=9; D.``` int i=1; a[i]=0; ``` 答案:C