A043数组拷贝
摘要:猿圈www.oxcoder.com数组拷贝1.1知识能力如果需要将数组的值拷贝到另一个数组,可以使用System的一个静态方法arraycopy,它有5个参数:from、fromIndex、to、toIndex、count,它的意思是将数组from中的索引为fromIndex开始的元素,拷贝到数组to中索引为toIndex的位置,拷贝的元素个数为count个。看一个使用System类的arraycopy()方法来拷贝数组值的例子:示例:使用System.arraycopy()方法拷贝数组源文件:ArrayCopy2.javapublicclassArrayCopy2{publicstaticvoidmain(String[]args){int[]a=newint[10];int[]b=newint[10];System.out.println("BeforeCopying:");for(inti=0;i<10;i++){a[i]=i+1;b[i]=(i+1)*100;System.out.print("b["+i+"]="+b[i]+"");}System.out.println("");System.arraycopy(a,2,b,5,5);System.out.println("AfterCopying:");for(inti=0;i<b.length;i++){System.out.print("b["+i+"]="+b[i]+"}}");猿圈www.oxcoder.com}执行这个程序后在控制台上打印的结果如下:BeforeCopying:b[
温馨提示:当前文档最多只能预览
5 页,若文档总页数超出了
5 页,请下载原文档以浏览全部内容。
本文档由 匿名用户 于 2021-11-29 00:24:55上传分享