次のコード スニペットでシンボルが見つからないというエラーが発生する理由について、誰かが私に洞察を与えてください。
乾杯!
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;
}