程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> int-JAVA中參數傳遞問題,為什麼ab的值不被改變, 怎樣才能被改變!

int-JAVA中參數傳遞問題,為什麼ab的值不被改變, 怎樣才能被改變!

編輯:編程綜合問答
JAVA中參數傳遞問題,為什麼ab的值不被改變, 怎樣才能被改變!

public class MyTest {
public static int c =1;
public static int d = 2;
public static void main(String[] args) {

    System.out.print("交換前\ta=" + c + "\tb=" + d + "\r");
    Swap(c, d);
    System.out.print("交換後\ta=" + c + "\tb=" + d + "\r");
}

// 交換a,b兩個變量的值
public static void Swap(int c, int d) {
    int temp = c;
    c = d;
    d = temp;
    System.out.print("方法內\ta=" + c + "\tb=" + d + "\r");

}

}
結果:
交換前 a=1 b=2
方法內 a=2 b=1
交換後 a=1 b=2

為什麼ab的值不變,怎麼才能改變ab呢?不是標記為靜態存儲了嗎

最佳回答:


改為object或者利用數組
參考:
http://blog.csdn.net/jianzhizg/article/details/1427086

希望采納我的答案哦 ^_^

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved