一个在Java中关于arraycopy()方法~~~~~是什么意思,
一个在Java中关于arraycopy()方法~~~~~是什么意思,是怎么用的,能不能拿出一个详细的例子来说明~~...
一个在Java中关于arraycopy()方法~~~~~是什么意思,是怎么用的,能不能拿出一个详细的例子来说明~~
展开
2个回答
展开全部
利用java.util.Arrays的copyOf方法来进行数组的拷贝
String[] from = { "3", "4", "5", "2", "1" };
String[] to = Arrays.copyOf(from, from.length);
String[] from = { "3", "4", "5", "2", "1" };
String[] to = Arrays.copyOf(from, from.length);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void arraycopy(Object src,
int srcPos,
Object dest,
int destPos,
int length)
Parameters:
src - the source array.源数据
srcPos - starting position in the source array.起始下标
dest - the destination array.目标源
destPos - starting position in the destination data.起始下标
length - the number of array elements to be copied. 想拷贝的长度
int srcPos,
Object dest,
int destPos,
int length)
Parameters:
src - the source array.源数据
srcPos - starting position in the source array.起始下标
dest - the destination array.目标源
destPos - starting position in the destination data.起始下标
length - the number of array elements to be copied. 想拷贝的长度
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询