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

【JAVA】System.arraycopy()使用

时间:2020-02-14 18:44:33      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:函数   java   log   http   pos   静态方法   native   star   数组   

参考链接:

System提供了一个静态方法arraycopy(),可以使用它来实现数组之间的复制。

函数原型:

public static native void arraycopy(Object src,int srcPos,Object dest, int destPos,int length);

* @param      src      the source array. 源数组
* @param      srcPos   starting position in the source array. 源数组的起始位置
* @param      dest     the destination array. 目标数组
* @param      destPos  starting position in the destination data. 目标数组的起始位置
* @param      length   the number of array elements to be copied. 复制的长度

举例:

  • 将array数组复制到新的数组中;
int[] array = {1, 2, 3, 4, 5};
int[] targetArr = new int[array.length];
System.arraycopy(array,0,targetArr,0,array.length); was 

END

【JAVA】System.arraycopy()使用

标签:函数   java   log   http   pos   静态方法   native   star   数组   

原文地址:https://www.cnblogs.com/anliux/p/12308218.html

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