java中怎么理解temp?
代碼:
public class TempTest { public static void main(String[] args) { int temp=0; int a=1; int b=2; temp = a + b; //在這里就是將a與b的和賦給了temp這個變量 System.out.println("temp = a + b======>"+temp); temp = a; //因為a是1,所以就是把a=1賦給了temp; System.out.println("temp = a======>"+temp); a=b; //在這里因為b的值是2,所以就是把b=2賦給了a System.out.println("a=b=======>"+a); } }
效果:
temp = a + b======>3 temp = a======>1 a=b=======>2
希望能幫到你。