Integer[] iArr = {1,2,3,4,5}; 
Object[] oArr = iArr;      //没有警告 void f(Object...args){ 
} f(iArr);    //警告 
f((Object[])iArr)    //没有警告 
讲解一下!!!