System l类arraycopy的用法
Posted 1540340840qls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了System l类arraycopy的用法相关的知识,希望对你有一定的参考价值。
package org.springframework; /** * @author 秦林森 */ public class Test { public static void main(String[] args) { int[] sourceArray = {1, 2, 3, 4, 5}; int[] destArray={8,9,10,11,12,16}; //改变目标数组 System.arraycopy(sourceArray,1,destArray,3,3); for(int sourceElement:sourceArray){ System.out.println(sourceElement); } //分割两次打印结果 System.out.println("*************************"); for(int destElement:destArray){ System.out.println(destElement); } } }
以上是关于System l类arraycopy的用法的主要内容,如果未能解决你的问题,请参考以下文章
Java-Java中System.arraycopy() 和 Arrays.copyOf()两者之间的区别