向方法中传递数组。

2021-04-25 01:30

阅读:694

标签:bsp   使用   初始   定义   初始化   ati   for   static   str   

public static void main(Strign [] args){

  int [] arr = {3,6,9}; //使用静态初始化定义数组

  fun(arr);   //传递数组引用

  for(int i = 0; i

    syso(arr[i]);

  }

}

public static void fun(int[] x){   //接收整型数组引用

  x[0] = 88;

}

向方法中传递数组。

标签:bsp   使用   初始   定义   初始化   ati   for   static   str   

原文地址:https://www.cnblogs.com/wangffeng293/p/13260689.html


评论


亲,登录后才可以留言!