码迷,mamicode.com
首页 > 编程语言 > 详细

java中拼接两个数组

时间:2014-09-10 23:50:41      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   os   java   ar   div   sp   

1 int a[]={1,2,3,2};
2 int b[]={4,2,90,8,98};
3 int[] d3 = new int[a.length + b.length];
4 System.arraycopy(a, 0, d3, 0, a.length);
5 System.arraycopy(b, 0, d3, a.length, b.length);

System.arraycopy的参数意义:(src, srcPos, dest, destPos, length)--(源数组,源数组开始位置,目标数组,目标数组开始位置,复制长度)

java中拼接两个数组

标签:des   style   blog   color   os   java   ar   div   sp   

原文地址:http://www.cnblogs.com/sweetculiji/p/3965455.html

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