如何在Java中实现交换两个变量值的方法

2024-12-28 11:33:00
推荐回答(2个)
回答1:

public class Demo {
public static void main(String[] args) {
//调用这个静态方法传递两个int 型的值就是了。
exchange(2, 6);
}

public static void exchange(int a, int b) {
int temp = 0;
temp = a;
a = b;
b = temp;
System.out.println("a=" + a);
System.out.println("b=" + b);

}
}

回答2:

这个方法没听说过,因为交换起来很简单。封装显得大材小用了。
int a=5;
int b=6;
int temp;
temp=a;
a=b;
b=temp;
这样就可以了,其他类型的情况类似