码迷,mamicode.com
首页 > 编程语言 > 详细

java 之System.arraycopy() vs arrays.copyOf()

时间:2015-08-09 00:25:38      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

在java中,数组的复制可以有System.arraycopy与arrays.copyOf()两种选择,下面就详细介绍一下这两种方法的差别:

System.arraycopy

 int[] src = {1,2,3,4,5};
  
 int[] des = new int[10];

 System.arraycopy(arr, 0, copied, 1, 5); //5 is the length to copy
 
 System.out.println(Arrays.toString(des));  

输出结果:

[0, 1, 2, 3, 4, 5, 0, 0, 0, 0]

 

arrays.copyOf()

int[] des= Arrays.copyOf(src, 10); //10 the the length of the new array
System.out.println(Arrays.toString(des));
 
des= Arrays.copyOf(src, 3);
System.out.println(Arrays.toString(des));

结果:

[1, 2, 3, 4, 5, 0, 0, 0, 0, 0]
[1, 2, 3]

 

本质区别:

 System.arraycopy()更灵活,但是需要提前new个数组出来

 arrays.copyOf(),参数少,不够灵活,只能指定复制的长度,无法设定偏移量

 

  

 

java 之System.arraycopy() vs arrays.copyOf()

标签:

原文地址:http://www.cnblogs.com/xkaisun/p/4714254.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!