为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

慕雪6442864 2019-03-29 23:19:53
如题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
查看完整描述

4 回答

?
MYYA

TA贡献1868条经验 获得超4个赞

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

查看完整回答
反对 回复 2019-04-19
?
长风秋雁

TA贡献1757条经验 获得超7个赞

因为传入了原来数组地址的一个副本,进而能改变原来数组的值.

Arrays.copyOf方法创建一个副本好了

查看完整回答
反对 回复 2019-04-19
?
holdtom

TA贡献1805条经验 获得超10个赞

Java里面对象除了String,别的都是传递的引用。


查看完整回答
反对 回复 2019-04-19
  • 4 回答
  • 0 关注
  • 1112 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信