//方法一
public static void swap(int[] arr,int x,int y)
{
int temp;
temp=arr[x];
arr[x]=arr[y];
arr[y]=temp;
}
//方法2
public static void swap1(int x,int y)
{
// int temp;
int temp=x;
x=y;
y=temp;
System.out.print("x="+x+";"+"y="+y);
}
方法2不行, 数组数据顺序没变,为什么 |
|