Java System.arrayCopy

2021/9/11 22:06:15

本文主要是介绍Java System.arrayCopy,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

用了几次都没记住用法,发文记一下

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

src – the source array.
srcPos – starting position in the source array.
dest – the destination array.
destPos – starting position in the destination data.
length – the number of array elements to be copied.

Object src 要复制的对象

int srcPos 指定复制数组的起始位置

Object dest 目标对象

int destPos 指定要复制的内容,复制到目标数组的位置

int length 代表要复制的内容到 dest 数组的长度,该数值不能超过 dest.length - desPos



这篇关于Java System.arrayCopy的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程