java.util.Arrays.sort()数组形参传递为啥能修改原始数组的内容?

如题java.util.Arrays.sort(int[] a)数组形参传递为啥能修改原始数组的内容?

[public static void sort(int[] a)](http://docs.oracle.com/javase/7/docs/api/java/util/Arrays.html#sort(int[]))


Sorts the specified array into ascending numerical order.


Implementation note: The sorting algorithm is a Dual-Pivot Quicksort by Vladimir Yaroslavskiy, Jon Bentley, and Joshua Bloch. This algorithm offers O(n log(n)) performance on many data sets that cause other quicksorts to degrade to quadratic performance, and is typically faster than traditional (one-pivot) Quicksort implementations.


Parameters:a - the array to be sorted

https://img2.mukewang.com/5cb9689b0001e2d604500800.jpg

慕雪6442864
浏览 1113回答 4
4回答

MYYA

1、对于int[] a,变量a是一个对象引用,可以理解为保存数组对象在堆中的地址(数组中的具体元素都保存在堆中);2、sort()中传入变量a的引用值,即1中说的数组在堆内的地址值,利用a的值,当然可以访问到在堆内的数组,进而程序可以修改数组内元素的值和顺序了。

长风秋雁

因为传入了原来数组地址的一个副本,进而能改变原来数组的值.用Arrays.copyOf方法创建一个副本好了

holdtom

Java里面对象除了String,别的都是传递的引用。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java