JAVA基礎學習之路(六)數組與方法參數的傳遞

通常,向方法中傳遞的都是基本數據類型,而向方法中傳遞數組時,就需要考慮內存的分配   public class test2 { public static void main(String args[]) { int arr[] = new int[] {9, 1, 2, 3, 4, 7, 8, 6, 5 }; sort(arr); for(
相關文章
相關標籤/搜索