public void Testswap() {
Integer[] arry = new Integer[9];
swapt(arry, 0, 2);
}
publicE swapt(E arry[], int index1, int index2) {
E Template = arry[index1];
arry[index1] = arry[index2];
arry[index2] = Template;
return (E) arry;
}
看下这个,你的数组类型不能直接用int,改为Integer就没事了
因为泛型不支持基本数据类型