返回列表 發帖

方法中傳值呼叫與傳參考呼叫

  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. }
複製代碼

返回列表