Board logo

標題: 方法中傳值呼叫與傳參考呼叫 [打印本頁]

作者: buy    時間: 2010-10-24 19:33     標題: 方法中傳值呼叫與傳參考呼叫

  1. import java.io.*;//for 鍵盤輸入
  2. import java.lang.Math;
  3. import java.util.ArrayList;

  4. public class Hello
  5. {
  6.         public static void main(String args[])throws IOException
  7.         {
  8.                 int a = 99;
  9.                 int b[] = new int[]{99};
  10.                 String s = "99";
  11.                
  12.                 add99(a,b,s);
  13.                
  14.                 System.out.println(a + "," + b[0] + "," + s);
  15.                
  16.         }
  17.        
  18.         public static void add99(int a,int [] b,String s)
  19.         {
  20.                 a = a+1;
  21.                 b[0] = b[0]+1;
  22.                 s = s + "1";
  23.         }

  24. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2