JAVASystem.arraycopy()使用

Posted 野生鹿惊仙贝

tags:

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

参考链接:

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

以上是关于JAVASystem.arraycopy()使用的主要内容,如果未能解决你的问题,请参考以下文章

为啥代客共享不像本地代客那样在请求中添加斜线

JVM系统优化实践:分代模型

12代es缓存延迟

JVM的垃圾算法有哪几种

JVM之几种垃圾收集器简单介绍

如何使用 Terraform 创建没有代入角色策略的 AWS IAM 角色?