任何人都可以告诉我为什么下面的代码片段会给出找不到符号错误,这个 swap() 应该被使用,因为当给定一个数组列表名称时,它会将索引位置 1 的内容与位置 2 交换
干杯!
public static void swap(String swapArray, int location1, int location2) {
int tempswap1 = swapArray.get(location1);
int tempswap2 = swapArray.get(location2);
swapArray.set(location1)=tempswap2;
swapArray.set(location2)=tempswap1;
}