System.arraycopy 和Arrays.copyOf

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了System.arraycopy 和Arrays.copyOf相关的知识,希望对你有一定的参考价值。

1.Arrays.copyOf()的实现是用的是arrayCopy(); 

2.System.arrayCopy()需要目标数组,对两个数组的内容进行可能不完全的合并操作。 

3.Arrays.copyOf()在内部新建一个数组,调用System.arrayCopy()将original内容复制到copy中去,并  且长度为newLength。返回copy;


 所以,使用System.arrayCopy()必须确定原数组不为null,且新数组的容量必须大于原数组

 Arrays.copyOf()则已经新建了一个新数组,并且确保了新数组容量大于原数组,然后再调用的System.arrayCopy() 

 

本文出自 “QinGuan” 博客,请务必保留此出处http://11083953.blog.51cto.com/11073953/1749124

以上是关于System.arraycopy 和Arrays.copyOf的主要内容,如果未能解决你的问题,请参考以下文章

Java中 System.arraycopy() 和 Arrays.copyOf()方法

Java-Java中System.arraycopy() 和 Arrays.copyOf()两者之间的区别

System.arraycopy()和Arrays.copyOf()的区别

Java方法之--System.arraycopy方法和Arrays.copyOf()

system.arrayCopy

Java 学习笔记 System.arraycopy 复制数组