System.arraycopy()的用法

好奇心鞭策着你成长!

1、

/**
 * @param src(原数组)
 *            the source array to copy the content.
 * @param srcPos(源数组中的起始位置)
 *            the starting index of the content in {@code src}.
 * @param dst(目标数组)
 *            the destination array to copy the data into.
 * @param dstPos(目标数据中的起始位置)
 *            the starting index for the copied content in {@code dst}.
 * @param length(要复制的数组元素的数量)
 *            the number of elements to be copied.
 * */
byte[] srcBytes = new byte[]{1, 2, 3, 4, 5, 6, 7, 8};
byte[] dstBytes = new byte[5];
System.arraycopy(srcBytes, 0, dstBytes, 0, dstBytes.length);
System.out.println(Arrays.toString(dstBytes));
2、想用集合(List)测试下,不行,报错如下:

Caused by: java.lang.ArrayStoreException: source of type java.util.ArrayList is not an array

后来看到一篇说到List.add和remove的方法的源码,也是用到System.arraycopy,可以研究研究

3、

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值