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

java arrayCopy

时间:2014-07-18 17:13:46      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:des   java   c   new   ar   amp   

int[] dest = new int[0];
int[] value = {1,2};
if(value != null && value.length>0)
{
int[] tmp = dest;
dest = new int[value.length+tmp.length];
System.arraycopy(tmp, 0, dest, 0, tmp.length);
System.arraycopy(value, 0, dest, tmp.length, value.length);
}
int[] value2 = {3,4};
if(value2 != null && value2.length>0)
{
int[] tmp = dest;
dest = new int[value2.length+tmp.length];
System.arraycopy(tmp, 0, dest, 0, tmp.length);
System.arraycopy(value2, 0, dest, tmp.length, value2.length);
}

java arrayCopy,布布扣,bubuko.com

java arrayCopy

标签:des   java   c   new   ar   amp   

原文地址:http://www.cnblogs.com/kevinge/p/3850808.html

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