简单问题. 我头疼.
----------------------------------public class SwapTest {
public static void main(String[] args){
int a=1,b=2;
SwapTest st = new SwapTest();
st.swap(a, b);
System.out.println(" a = " + a);
System.out.println(" b = " + b);
}
}
----------------------------------
上面代码. 添加一个 swap 函数,实现 a 和 b 值的交换,C语言中很好写, 可 JAVA 里硬是不知道这个函数怎么写?