码迷,mamicode.com
首页 > 其他好文 > 详细

System l类arraycopy的用法

时间:2018-09-29 12:59:29      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:int   数组   author   string   frame   打印   out   str   pack   

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的用法

标签:int   数组   author   string   frame   打印   out   str   pack   

原文地址:https://www.cnblogs.com/1540340840qls/p/9722971.html

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